import { z } from 'zod'; /** * Zod schema for the FcmTokenPayload 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 fcmTokenPayload: z.ZodLazy>; /** * * @typedef {FcmTokenPayload} fcmTokenPayload * @property {string} - The Firebase Cloud Messaging device registration token to associate with the user. */ export type FcmTokenPayload = z.infer; /** * Zod schema for mapping API responses to the FcmTokenPayload 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 fcmTokenPayloadResponse: z.ZodLazy, { deviceToken: string; }, { device_token: string; }>>; /** * Zod schema for mapping the FcmTokenPayload 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 fcmTokenPayloadRequest: z.ZodLazy, { device_token: string; }, { deviceToken: string; }>>; //# sourceMappingURL=fcm-token-payload.d.ts.map