import { ProxyNativeModule } from 'expo-modules-core'; import { Notification, NotificationContentInput } from './Notifications.types'; export interface NotificationPresenterModule extends ProxyNativeModule { getPresentedNotificationsAsync?: () => Promise; presentNotificationAsync?: (identifier: string, content: NotificationContentInput) => Promise; dismissNotificationAsync?: (identifier: string) => Promise; dismissAllNotificationsAsync?: () => Promise; }