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