/** Notification-sink record response schemas. */ import { z } from 'zod'; export declare const notification: z.ZodObject<{ id: z.ZodString; message: z.ZodString; recipient: z.ZodNullable; audience: z.ZodOptional>; media: z.ZodOptional>>; template: z.ZodOptional>; buttons: z.ZodDefault>; header_media: z.ZodDefault>; filename: z.ZodDefault>; kind: z.ZodEnum<{ image: "image"; link: "link"; document: "document"; video: "video"; audio: "audio"; }>; url: z.ZodString; }, z.core.$strip>, z.ZodNull]>>; language: z.ZodString; name: z.ZodString; }, z.core.$strip>>>; options: z.ZodOptional>>; created_at: z.ZodString; }, z.core.$strip>; export type Notification = z.infer; export declare const notifications: z.ZodObject<{ notifications: z.ZodArray; audience: z.ZodOptional>; media: z.ZodOptional>>; template: z.ZodOptional>; buttons: z.ZodDefault>; header_media: z.ZodDefault>; filename: z.ZodDefault>; kind: z.ZodEnum<{ image: "image"; link: "link"; document: "document"; video: "video"; audio: "audio"; }>; url: z.ZodString; }, z.core.$strip>, z.ZodNull]>>; language: z.ZodString; name: z.ZodString; }, z.core.$strip>>>; options: z.ZodOptional>>; created_at: z.ZodString; }, z.core.$strip>>; }, z.core.$strip>; export type Notifications = z.infer; //# sourceMappingURL=notifications.d.ts.map