1import { NotificationChannelGroup, NotificationChannelGroupInput } from './NotificationChannelGroupManager.types';
2/**
3 * Assigns the channel group configuration to a channel group of a specified name (creating it if need be).
4 * @param groupId The channel group's identifier.
5 * @param group Object representing the channel group configuration.
6 * @return A `Promise` resolving to the object (of type [`NotificationChannelGroup`](#notificationchannelgroup))
7 * describing the modified channel group or to `null` if the platform does not support notification channels.
8 * @platform android
9 * @header channels
10 */
11export default function setNotificationChannelGroupAsync(groupId: string, group: NotificationChannelGroupInput): Promise<NotificationChannelGroup | null>;
12//# sourceMappingURL=setNotificationChannelGroupAsync.d.ts.map