import { z } from 'zod'; /** * Zod schema for the DefaultHover 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 defaultHover: z.ZodLazy>; /** * Styles applied when a notification is hovered. * @typedef {DefaultHover} defaultHover - Styles applied when a notification is hovered. - Styles applied when a notification is hovered. * @property {string} - Background color on hover. */ export type DefaultHover = z.infer; /** * Zod schema for mapping API responses to the DefaultHover 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 defaultHoverResponse: z.ZodLazy, { backgroundColor: string; }, { backgroundColor: string; }>>; /** * Zod schema for mapping the DefaultHover 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 defaultHoverRequest: z.ZodLazy, { backgroundColor: string; }, { backgroundColor: string; }>>; //# sourceMappingURL=default-hover.d.ts.map