import { z } from 'zod'; /** * Zod schema for the Email model. * Defines the structure and validation rules for this data type. * This is the shape used in application code - what developers interact with. */ export declare const email: z.ZodLazy>; content: z.ZodOptional; title: z.ZodOptional; }, "strip", z.ZodTypeAny, { actionUrl?: string | null | undefined; content?: string | undefined; title?: string | undefined; }, { actionUrl?: string | null | undefined; content?: string | undefined; title?: string | undefined; }>>; /** * Overrides for email notifications. * @typedef {Email} email - Overrides for email notifications. - Overrides for email notifications. * @property {string} - The link associated with the channel-specific notification. * @property {string} - The channel-specific content. * @property {string} - The channel-specific title. */ export type Email = z.infer; /** * Zod schema for mapping API responses to the Email application shape. * Handles any property name transformations from the API schema. * If property names match the API schema exactly, this is identical to the application shape. */ export declare const emailResponse: z.ZodLazy>; content: z.ZodOptional; title: z.ZodOptional; }, "strip", z.ZodTypeAny, { content?: string | undefined; title?: string | undefined; action_url?: string | null | undefined; }, { content?: string | undefined; title?: string | undefined; action_url?: string | null | undefined; }>, { actionUrl: string | null | undefined; content: string | undefined; title: string | undefined; }, { content?: string | undefined; title?: string | undefined; action_url?: string | null | undefined; }>>; /** * Zod schema for mapping the Email application shape to API requests. * Handles any property name transformations required by the API schema. * If property names match the API schema exactly, this is identical to the application shape. */ export declare const emailRequest: z.ZodLazy>; content: z.ZodOptional; title: z.ZodOptional; }, "strip", z.ZodTypeAny, { actionUrl?: string | null | undefined; content?: string | undefined; title?: string | undefined; }, { actionUrl?: string | null | undefined; content?: string | undefined; title?: string | undefined; }>, { action_url: string | null | undefined; content: string | undefined; title: string | undefined; }, { actionUrl?: string | null | undefined; content?: string | undefined; title?: string | undefined; }>>; //# sourceMappingURL=email.d.ts.map