import { z } from 'zod'; /** * Zod schema for the InApp 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 inApp: 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 in-app notifications. * @typedef {InApp} inApp - Overrides for in-app notifications. - Overrides for in-app 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 InApp = z.infer; /** * Zod schema for mapping API responses to the InApp 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 inAppResponse: 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 InApp 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 inAppRequest: 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=in-app.d.ts.map