import { z } from 'zod'; /** * Zod schema for the Footer 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 footer: z.ZodLazy>; /** * Footer styling for the inbox modal. * @typedef {Footer} footer - Footer styling for the inbox modal. - Footer styling for the inbox modal. * @property {string} - Footer background color. * @property {string} - Border radius applied to the footer container. * @property {string} - Font size used in the footer. * @property {string} - Footer text color. */ export type Footer = z.infer; /** * Zod schema for mapping API responses to the Footer 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 footerResponse: z.ZodLazy, { backgroundColor: string; borderRadius: string; fontSize: string; textColor: string; }, { backgroundColor: string; fontSize: string; textColor: string; borderRadius: string; }>>; /** * Zod schema for mapping the Footer 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 footerRequest: z.ZodLazy, { backgroundColor: string; borderRadius: string; fontSize: string; textColor: string; }, { backgroundColor: string; fontSize: string; textColor: string; borderRadius: string; }>>; //# sourceMappingURL=footer.d.ts.map