export type BluxNotification = { id: string; body: string; title?: string; url?: string; imageUrl?: string; data?: Record; }; export type NotificationClickedHandler = (notification: BluxNotification) => void; export declare function parseBluxNotification(raw: any): BluxNotification; //# sourceMappingURL=BluxNotification.d.ts.map