import { z } from 'zod'; /** * Zod schema for the WebpushConfig 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 webpushConfig: z.ZodLazy>; id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { config: { privateKey: string; publicKey: string; }; id: string; name: string; }, { config: { privateKey: string; publicKey: string; }; id: string; name: string; }>>; /** * * @typedef {WebpushConfig} webpushConfig * @property {WebpushConfigPayload} * @property {string} * @property {string} */ export type WebpushConfig = z.infer; /** * Zod schema for mapping API responses to the WebpushConfig 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 webpushConfigResponse: z.ZodLazy, { privateKey: string; publicKey: string; }, { private_key: string; public_key: string; }>>; id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { config: { privateKey: string; publicKey: string; }; id: string; name: string; }, { config: { private_key: string; public_key: string; }; id: string; name: string; }>, { config: { privateKey: string; publicKey: string; }; id: string; name: string; }, { config: { private_key: string; public_key: string; }; id: string; name: string; }>>; /** * Zod schema for mapping the WebpushConfig 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 webpushConfigRequest: z.ZodLazy, { private_key: string; public_key: string; }, { privateKey: string; publicKey: string; }>>; id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { config: { private_key: string; public_key: string; }; id: string; name: string; }, { config: { privateKey: string; publicKey: string; }; id: string; name: string; }>, { config: { private_key: string; public_key: string; }; id: string; name: string; }, { config: { privateKey: string; publicKey: string; }; id: string; name: string; }>>; //# sourceMappingURL=webpush-config.d.ts.map