1/**
2 * Removes the notification channel group and all notification channels that belong to it.
3 * @param groupId The channel group identifier.
4 * @return A Promise which resolves once the channel group is removed (or if there was no channel group for given identifier).
5 * @platform android
6 * @header channels
7 */
8export default async function deleteNotificationChannelGroupAsync(groupId: string): Promise<void> {
9  console.debug('Notification channels feature is only supported on Android.');
10}
11