import { EventSubscription } from 'fbemitter'; import { Notification, LocalNotification, Channel, ActionType } from './Notifications.types'; export declare function emitNotification(notification: any): void; 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: (notification: Notification) => unknown): EventSubscription; getBadgeNumberAsync(): Promise; setBadgeNumberAsync(number: number): Promise; scheduleNotificationWithCalendarAsync(notification: LocalNotification, options?: { year?: number | undefined; month?: number | undefined; hour?: number | undefined; day?: number | undefined; minute?: number | undefined; second?: number | undefined; weekDay?: number | undefined; repeat?: boolean | undefined; }): Promise; scheduleNotificationWithTimerAsync(notification: LocalNotification, options: { interval: number; repeat?: boolean | undefined; }): Promise; }; export default _default;