import { z } from 'zod'; /** * Zod schema for the MobilePush 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 mobilePush: 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 mobile push notifications. * @typedef {MobilePush} mobilePush - Overrides for mobile push notifications. - Overrides for mobile push 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 MobilePush = z.infer; /** * Zod schema for mapping API responses to the MobilePush 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 mobilePushResponse: 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 MobilePush 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 mobilePushRequest: 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=mobile-push.d.ts.map