import { z } from 'zod'; /** * Schema for environment detection variables. */ export declare const environmentDetectionSchema: z.ZodObject<{ NODE_ENV: z.ZodOptional>; REDOCLY_ENV: z.ZodOptional>; REDOCLY_EXECUTION_MODE: z.ZodOptional>; REDOCLY_INTERNAL_DEV: z.ZodOptional; CI: z.ZodOptional; }, "strict", z.ZodTypeAny, { REDOCLY_EXECUTION_MODE?: "build" | "develop" | "runtime" | undefined; NODE_ENV?: "development" | "production" | "test" | undefined; REDOCLY_ENV?: "development" | "production" | "preview" | undefined; REDOCLY_INTERNAL_DEV?: string | undefined; CI?: string | undefined; }, { REDOCLY_EXECUTION_MODE?: "build" | "develop" | "runtime" | undefined; NODE_ENV?: "development" | "production" | "test" | undefined; REDOCLY_ENV?: "development" | "production" | "preview" | undefined; REDOCLY_INTERNAL_DEV?: string | undefined; CI?: string | undefined; }>; //# sourceMappingURL=environment-detection.d.ts.map