1import { UnavailabilityError } from 'expo-modules-core';
2import NotificationChannelManager from './NotificationChannelManager';
3export default async function deleteNotificationChannelAsync(channelId) {
4    if (!NotificationChannelManager.deleteNotificationChannelAsync) {
5        throw new UnavailabilityError('Notifications', 'deleteNotificationChannelAsync');
6    }
7    return await NotificationChannelManager.deleteNotificationChannelAsync(channelId);
8}
9//# sourceMappingURL=deleteNotificationChannelAsync.android.js.map