1import {
2  NotificationChannelGroup,
3  NotificationChannelGroupInput,
4} from './NotificationChannelGroupManager.types';
5
6export default async function setNotificationChannelGroupAsync(
7  groupId: string,
8  group: NotificationChannelGroupInput
9): Promise<NotificationChannelGroup | null> {
10  console.debug('Notification channels feature is only supported on Android.');
11  return null;
12}
13