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