declare module 'react-native-check-notification-enable' { interface NotificationSettings { isEnabled: boolean; isBadgeEnabled: boolean; isSoundEnabled: boolean; shownInNotificationCenter: boolean; shownInLockScreen: boolean; shownAsHeadsupDisplay: boolean; } interface NotificationChannel extends NotificationSettings { id: string; } export const NotificationManager: { areNotificationsEnabled: () => Promise, retrieveGlobalNotificationSettings: () => Promise, retrieveNotificationChannels: () => Promise, } export default NotificationManager }