import { z } from 'zod'; /** * Zod schema for the ExpoConfig 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 expoConfig: z.ZodLazy>; id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { config: { accessToken: string; }; id: string; name: string; }, { config: { accessToken: string; }; id: string; name: string; }>>; /** * * @typedef {ExpoConfig} expoConfig * @property {ExpoConfigPayload} * @property {string} * @property {string} */ export type ExpoConfig = z.infer; /** * Zod schema for mapping API responses to the ExpoConfig 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 expoConfigResponse: z.ZodLazy, { accessToken: string; }, { access_token: string; }>>; id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { config: { accessToken: string; }; id: string; name: string; }, { config: { access_token: string; }; id: string; name: string; }>, { config: { accessToken: string; }; id: string; name: string; }, { config: { access_token: string; }; id: string; name: string; }>>; /** * Zod schema for mapping the ExpoConfig 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 expoConfigRequest: z.ZodLazy, { access_token: string; }, { accessToken: string; }>>; id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { config: { access_token: string; }; id: string; name: string; }, { config: { accessToken: string; }; id: string; name: string; }>, { config: { access_token: string; }; id: string; name: string; }, { config: { accessToken: string; }; id: string; name: string; }>>; //# sourceMappingURL=expo-config.d.ts.map