import { PushNotificationModel } from "./messaging.ios"; import { MessagingOptions } from "../firebase"; export declare function initFirebaseMessaging(options?: MessagingOptions): void; export declare function onAppModuleLaunchEvent(args: any): void; export declare function onAppModuleResumeEvent(args: any): void; export declare function registerForInteractivePush(model?: PushNotificationModel): void; export declare function getCurrentPushToken(): Promise; export declare function addOnMessageReceivedCallback(callback: any): Promise<{}>; export declare function addOnPushTokenReceivedCallback(callback: any): Promise<{}>; export declare function registerForPushNotifications(options?: MessagingOptions): Promise; export declare function unregisterForPushNotifications(): Promise; export declare function subscribeToTopic(topicName: any): Promise<{}>; export declare function unsubscribeFromTopic(topicName: any): Promise<{}>; export declare function areNotificationsEnabled(): any;