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