import type { Transport } from './transport'; export declare function notificationsClient(t: Transport): { listNotifications: (signal?: AbortSignal) => Promise<{ notifications: { id: string; message: string; recipient: string | null; created_at: string; audience?: string | null | undefined; media?: unknown[] | null | undefined; template?: { body_parameters: string[]; buttons: unknown[]; header_media: { caption: string | null; filename: string | null; kind: "image" | "link" | "document" | "video" | "audio"; url: string; } | null; language: string; name: string; } | null | undefined; options?: string[] | null | undefined; }[]; }>; }; //# sourceMappingURL=notifications-client.d.ts.map