1import { ProxyNativeModule } from 'expo-modules-core';
2
3import { NotificationResponse } from './Notifications.types';
4
5export interface NotificationsEmitterModule extends ProxyNativeModule {
6  getLastNotificationResponseAsync?: () => Promise<NotificationResponse | null>;
7}
8