import { NativeModule } from 'expo-modules-core'; export type PushTokenManagerModuleEvents = { onDevicePushToken: (params: { devicePushToken: string; }) => void; }; export declare class PushTokenManagerModule extends NativeModule { getDevicePushTokenAsync?: () => Promise; unregisterForNotificationsAsync?: () => Promise; } //# sourceMappingURL=PushTokenManager.types.d.ts.map