1import { NotificationChannelGroup } from './NotificationChannelGroupManager.types';
2
3/**
4 * Fetches information about all known notification channel groups.
5 * @return A Promise which resoles to an array of channel groups. On platforms that do not support notification channel groups,
6 * it will always resolve to an empty array.
7 * @platform android
8 * @header channels
9 */
10export default async function getNotificationChannelGroupsAsync(): Promise<
11  NotificationChannelGroup[]
12> {
13  console.debug('Notification channels feature is only supported on Android.');
14  return [];
15}
16