import { z } from "zod"; export declare const GeneratorConfig: z.ZodObject<{ mod: z.ZodString; config: z.ZodAny; }, "strict", z.ZodTypeAny, { mod: string; config?: any; }, { mod: string; config?: any; }>; export type GeneratorConfig = z.infer; export declare const SoiaConfig: z.ZodObject<{ generators: z.ZodArray, "many">; srcDir: z.ZodOptional; mirroredSoiagenDirs: z.ZodOptional; }, "strict", z.ZodTypeAny, { path: string; fileRegex?: string | undefined; }, { path: string; fileRegex?: string | undefined; }>, "many">>; }, "strict", z.ZodTypeAny, { generators: { mod: string; config?: any; }[]; srcDir?: string | undefined; mirroredSoiagenDirs?: { path: string; fileRegex?: string | undefined; }[] | undefined; }, { generators: { mod: string; config?: any; }[]; srcDir?: string | undefined; mirroredSoiagenDirs?: { path: string; fileRegex?: string | undefined; }[] | undefined; }>; export type SoiaConfig = z.infer; //# sourceMappingURL=config.d.ts.map