import { z } from 'zod'; /** * Zod schema for the ExpoConfigPayload 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 expoConfigPayload: z.ZodLazy>; /** * * @typedef {ExpoConfigPayload} expoConfigPayload * @property {string} - The Expo access token used to authenticate push notifications. */ export type ExpoConfigPayload = z.infer; /** * Zod schema for mapping API responses to the ExpoConfigPayload 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 expoConfigPayloadResponse: z.ZodLazy, { accessToken: string; }, { access_token: string; }>>; /** * Zod schema for mapping the ExpoConfigPayload 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 expoConfigPayloadRequest: z.ZodLazy, { access_token: string; }, { accessToken: string; }>>; //# sourceMappingURL=expo-config-payload.d.ts.map