import { z } from 'zod'; /** * Zod schema for the CountResponse 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 countResponse: z.ZodLazy>; /** * * @typedef {CountResponse} countResponse * @property {number} - The count of notifications matching the query. */ export type CountResponse = z.infer; /** * Zod schema for mapping API responses to the CountResponse 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 countResponseResponse: z.ZodLazy, { count: number; }, { count: number; }>>; /** * Zod schema for mapping the CountResponse 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 countResponseRequest: z.ZodLazy, { count: number; }, { count: number; }>>; //# sourceMappingURL=count-response.d.ts.map