import { z } from 'zod'; /** * Zod schema for the WebPushTokenPayloadKeys 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 webPushTokenPayloadKeys: z.ZodLazy>; /** * The encryption keys from the PushSubscription.getKey() method, needed to encrypt push messages for this subscription. * @typedef {WebPushTokenPayloadKeys} webPushTokenPayloadKeys - 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 WebPushTokenPayloadKeys = z.infer; /** * Zod schema for mapping API responses to the WebPushTokenPayloadKeys 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 webPushTokenPayloadKeysResponse: z.ZodLazy, { auth: string; p256dh: string; }, { auth: string; p256dh: string; }>>; /** * Zod schema for mapping the WebPushTokenPayloadKeys 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 webPushTokenPayloadKeysRequest: z.ZodLazy, { auth: string; p256dh: string; }, { auth: string; p256dh: string; }>>; //# sourceMappingURL=web-push-token-payload-keys.d.ts.map