import { z } from 'zod'; /** * Zod schema for the WebPushTokenKeys 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 webPushTokenKeys: z.ZodLazy>; /** * The encryption keys from the PushSubscription.getKey() method, needed to encrypt push messages for this subscription. * @typedef {WebPushTokenKeys} webPushTokenKeys - The encryption keys from the PushSubscription.getKey() method, needed to encrypt push messages for this subscription. - The encryption keys from the PushSubscription.getKey() method, needed to encrypt push messages for this subscription. * @property {string} - The authentication secret obtained from PushSubscription.getKey('auth'). Used to encrypt push messages for this subscription. * @property {string} - The P-256 ECDH public key obtained from PushSubscription.getKey('p256dh'). Used to encrypt push messages for this subscription. */ export type WebPushTokenKeys = z.infer; /** * Zod schema for mapping API responses to the WebPushTokenKeys 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 webPushTokenKeysResponse: z.ZodLazy, { auth: string; p256dh: string; }, { auth: string; p256dh: string; }>>; /** * Zod schema for mapping the WebPushTokenKeys 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 webPushTokenKeysRequest: z.ZodLazy, { auth: string; p256dh: string; }, { auth: string; p256dh: string; }>>; //# sourceMappingURL=web-push-token-keys.d.ts.map