import { z } from 'zod'; /** * Zod schema for the Unread 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 unread: z.ZodLazy>>; state: z.ZodOptional>>; textColor: z.ZodString; }, "strip", z.ZodTypeAny, { backgroundColor: string; textColor: string; hover?: { backgroundColor: string; } | undefined; state?: { color: string; } | undefined; }, { backgroundColor: string; textColor: string; hover?: { backgroundColor: string; } | undefined; state?: { color: string; } | undefined; }>>; /** * Overrides for unread notifications. * @typedef {Unread} unread - Overrides for unread notifications. - Overrides for unread notifications. * @property {string} - Background color applied to unread notifications. * @property {UnreadHover} - Hover styles for unread notifications. * @property {UnreadState} - State indicator styling for unread notifications. * @property {string} - Text color used when a notification is unread. */ export type Unread = z.infer; /** * Zod schema for mapping API responses to the Unread 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 unreadResponse: z.ZodLazy, { backgroundColor: string; }, { backgroundColor: string; }>>>; state: z.ZodOptional, { color: string; }, { color: string; }>>>; textColor: z.ZodString; }, "strip", z.ZodTypeAny, { backgroundColor: string; textColor: string; hover?: { backgroundColor: string; } | undefined; state?: { color: string; } | undefined; }, { backgroundColor: string; textColor: string; hover?: { backgroundColor: string; } | undefined; state?: { color: string; } | undefined; }>, { backgroundColor: string; hover: { backgroundColor: string; } | undefined; state: { color: string; } | undefined; textColor: string; }, { backgroundColor: string; textColor: string; hover?: { backgroundColor: string; } | undefined; state?: { color: string; } | undefined; }>>; /** * Zod schema for mapping the Unread 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 unreadRequest: z.ZodLazy, { backgroundColor: string; }, { backgroundColor: string; }>>>; state: z.ZodOptional, { color: string; }, { color: string; }>>>; textColor: z.ZodString; }, "strip", z.ZodTypeAny, { backgroundColor: string; textColor: string; hover?: { backgroundColor: string; } | undefined; state?: { color: string; } | undefined; }, { backgroundColor: string; textColor: string; hover?: { backgroundColor: string; } | undefined; state?: { color: string; } | undefined; }>, { backgroundColor: string; hover: { backgroundColor: string; } | undefined; state: { color: string; } | undefined; textColor: string; }, { backgroundColor: string; textColor: string; hover?: { backgroundColor: string; } | undefined; state?: { color: string; } | undefined; }>>; //# sourceMappingURL=unread.d.ts.map