1import { ProxyNativeModule } from 'expo-modules-core';
2
3import { NotificationBehavior } from './Notifications.types';
4
5export interface NotificationsHandlerModule extends ProxyNativeModule {
6  handleNotificationAsync?: (
7    notificationId: string,
8    notificationBehavior: NotificationBehavior
9  ) => Promise<void>;
10}
11