export type ParsedPayload = { _v?: number; title?: string; body?: string; android?: Record; ios?: Record; [key: string]: unknown; }; /** * Extracts and JSON-parses the `notifee_options` value from the FCM data map. * Returns the parsed object on success, or `null` when: * - `data` is undefined/null * - `data.notifee_options` is missing * - JSON parsing fails (a `console.warn` is emitted) */ export declare function parseFcmPayload(data: Record | undefined): ParsedPayload | null;