import { z } from 'zod'; /** * Zod schema for the WebpushConfigPayload 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 webpushConfigPayload: z.ZodLazy>; /** * * @typedef {WebpushConfigPayload} webpushConfigPayload * @property {string} - VAPID private key. * @property {string} - VAPID public key - read more at https://magicbell.com/tools/vapid-keys. */ export type WebpushConfigPayload = z.infer; /** * Zod schema for mapping API responses to the WebpushConfigPayload 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 webpushConfigPayloadResponse: z.ZodLazy, { privateKey: string; publicKey: string; }, { private_key: string; public_key: string; }>>; /** * Zod schema for mapping the WebpushConfigPayload 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 webpushConfigPayloadRequest: z.ZodLazy, { private_key: string; public_key: string; }, { privateKey: string; publicKey: string; }>>; //# sourceMappingURL=webpush-config-payload.d.ts.map