import { z } from 'zod'; /** * Zod schema for the ExpoTokenPayload 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 expoTokenPayload: z.ZodLazy>; /** * * @typedef {ExpoTokenPayload} expoTokenPayload * @property {string} - The Expo push token returned by the Expo client. */ export type ExpoTokenPayload = z.infer; /** * Zod schema for mapping API responses to the ExpoTokenPayload 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 expoTokenPayloadResponse: z.ZodLazy, { deviceToken: string; }, { device_token: string; }>>; /** * Zod schema for mapping the ExpoTokenPayload 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 expoTokenPayloadRequest: z.ZodLazy, { device_token: string; }, { deviceToken: string; }>>; //# sourceMappingURL=expo-token-payload.d.ts.map