import { z } from 'zod'; /** * Schema for feature flags. */ export declare const featureFlagsSchema: z.ZodObject<{ NEW_CATALOG_ENABLED: z.ZodOptional>; NEW_SCORECARDS_ENABLED: z.ZodOptional>; ENABLE_COMMENTS: z.ZodOptional; ENABLE_SOURCE_MAPS: z.ZodOptional>; PLAN_GATES: z.ZodOptional; }, "strip", z.ZodTypeAny, { NEW_CATALOG_ENABLED?: "true" | "false" | undefined; NEW_SCORECARDS_ENABLED?: "true" | "false" | undefined; ENABLE_COMMENTS?: string | undefined; ENABLE_SOURCE_MAPS?: "true" | "false" | undefined; PLAN_GATES?: string | undefined; }, { NEW_CATALOG_ENABLED?: "true" | "false" | undefined; NEW_SCORECARDS_ENABLED?: "true" | "false" | undefined; ENABLE_COMMENTS?: string | undefined; ENABLE_SOURCE_MAPS?: "true" | "false" | undefined; PLAN_GATES?: string | undefined; }>; //# sourceMappingURL=feature-flags.d.ts.map