import { EventSubscription } from 'fbemitter'; declare type Notification = { origin: 'selected' | 'received'; data: any; remote: boolean; isMultiple: boolean; }; declare type LocalNotification = { title: string; body?: string; data?: any; categoryId?: string; ios?: { sound?: boolean; }; android?: { channelId?: string; icon?: string; color?: string; sticky?: boolean; link?: string; }; }; declare type Channel = { name: string; description?: string; priority?: string; sound?: boolean; vibrate?: boolean | number[]; badge?: boolean; }; declare type ActionType = { actionId: string; buttonTitle: string; isDestructive?: boolean; isAuthenticationRequired?: boolean; textInput?: { submitButtonTitle: string; placeholder: string; }; }; declare const _default: { _setInitialNotification(notification: Notification): void; createCategoryAsync(categoryId: string, actions: ActionType[]): Promise; deleteCategoryAsync(categoryId: string): Promise; getExpoPushTokenAsync(): Promise; getDevicePushTokenAsync: (config: { gcmSenderId?: string | undefined; }) => Promise<{ type: string; data: string; }>; createChannelAndroidAsync(id: string, channel: Channel): Promise; deleteChannelAndroidAsync(id: string): Promise; presentLocalNotificationAsync(notification: LocalNotification): Promise; scheduleLocalNotificationAsync(notification: LocalNotification, options?: { time?: number | Date | undefined; repeat?: "minute" | "hour" | "day" | "week" | "month" | "year" | undefined; intervalMs?: number | undefined; }): Promise; dismissNotificationAsync(notificationId: import("react").ReactText): Promise; dismissAllNotificationsAsync(): Promise; cancelScheduledNotificationAsync(notificationId: import("react").ReactText): Promise; cancelAllScheduledNotificationsAsync(): Promise; addListener(listener: Function): EventSubscription; getBadgeNumberAsync(): Promise; setBadgeNumberAsync(number: number): Promise; }; export default _default;