import { z } from 'zod'; /** * Zod schema for the WebPushStartInstallationResponse 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 webPushStartInstallationResponse: z.ZodLazy>; /** * * @typedef {WebPushStartInstallationResponse} webPushStartInstallationResponse * @property {string} - Auth secret returned from PushSubscription.getKey('auth'). * @property {string} - VAPID public key generated for this web push installation. */ export type WebPushStartInstallationResponse = z.infer; /** * Zod schema for mapping API responses to the WebPushStartInstallationResponse 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 webPushStartInstallationResponseResponse: z.ZodLazy, { authToken: string; publicKey: string; }, { public_key: string; auth_token: string; }>>; /** * Zod schema for mapping the WebPushStartInstallationResponse 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 webPushStartInstallationResponseRequest: z.ZodLazy, { auth_token: string; public_key: string; }, { publicKey: string; authToken: string; }>>; //# sourceMappingURL=web-push-start-installation-response.d.ts.map