import { PushNotificationObject } from "react-native-push-notification"; export declare type Alarm = PushNotificationObject & { active: boolean; date: string; message: string; snooze: number; oid?: string | number; }; export declare type ID = string | number | undefined;