export type NotificationId = number; export type PushNotificationInput = { text: string; deeplink?: string; /** Unix timestamp in milliseconds (UTC). Omit for immediate delivery. Past values fire immediately. */ scheduledAt?: number; }; export declare const createNotificationManager: (transport?: import("@novasamatech/host-api").Transport) => { push({ text, deeplink, scheduledAt }: PushNotificationInput): Promise; cancel(id: NotificationId): Promise; }; export declare const notificationManager: { push({ text, deeplink, scheduledAt }: PushNotificationInput): Promise; cancel(id: NotificationId): Promise; };