import { z } from "zod"; //#region src/cli/configSchema.d.ts /** Configuration to control the generated types. */ declare const configSchema: z.ZodObject<{ repositoryName: z.ZodOptional; accessToken: z.ZodOptional; customTypesAPIToken: z.ZodOptional; output: z.ZodOptional; typesProvider: z.ZodOptional>; clientIntegration: z.ZodOptional; includeContentNamespace: z.ZodOptional; }, z.core.$strip>>; locales: z.ZodOptional, z.ZodObject<{ ids: z.ZodOptional>; fetchFromRepository: z.ZodOptional; }, z.core.$strip>]>>; models: z.ZodOptional, z.ZodObject<{ files: z.ZodOptional>; fetchFromRepository: z.ZodOptional; }, z.core.$strip>]>>; fields: z.ZodOptional>; }, z.core.$strip>>; integrationFields: z.ZodOptional>; }, z.core.$strip>>; }, z.core.$strip>>; }, z.core.$strip>; /** Configuration to control the generated types. */ type Config = z.infer; //#endregion export { Config }; //# sourceMappingURL=configSchema.d.ts.map