import { LocalNotification } from './Notifications.types'; import './ExponentNotifications.fx.web'; declare const _default: { presentLocalNotification(notification: LocalNotification): Promise; scheduleLocalNotification(notification: any, options?: { time?: number | Date | undefined; repeat?: "minute" | "hour" | "day" | "week" | "month" | "year" | undefined; intervalMs?: number | undefined; }): Promise; dismissNotification(notificationId?: string | undefined): Promise; dismissAllNotifications(): Promise; cancelScheduledNotificationAsync(notificationId: string): Promise; cancelAllScheduledNotificationsAsync(): Promise; getExponentPushTokenAsync(): Promise; getDevicePushTokenAsync(): Promise<{ type: string; data: Object; }>; }; export default _default;