import { z } from "zod"; declare const ProjectConfigSchema: z.ZodObject<{ projectName: z.ZodString; environmentName: z.ZodOptional; description: z.ZodOptional; }, "strip", z.ZodTypeAny, { projectName: string; description?: string | undefined; environmentName?: string | undefined; }, { projectName: string; description?: string | undefined; environmentName?: string | undefined; }>; export type ProjectConfig = z.infer; /** * Get the path to the gensx.yaml file */ export declare function getProjectConfigPath(dir: string): string; /** * Read the gensx.yaml file and return the parsed config */ export declare function readProjectConfig(dir: string): ProjectConfig | null; export {}; //# sourceMappingURL=project-config.d.ts.map