/** Environment-config and config-mode response schemas. */ import { z } from 'zod'; export declare const envConfig: z.ZodObject<{ env: z.ZodRecord; secret_keys: z.ZodArray; }, z.core.$strip>; /** * `GET /api/config/mode` — the active config backend mode: `file`, or an installed * provider's mode name such as `kubernetes`. The skeleton emits only `config_mode`; * `read_only` is a UI-side gate, tolerated-absent and defaulting to `false` (writable) * so a normal response never drifts, while a genuinely read-only deployment can opt in * by emitting `read_only: true`. */ export declare const configMode: z.ZodObject<{ config_mode: z.ZodString; read_only: z.ZodDefault; }, z.core.$strip>; //# sourceMappingURL=config.d.ts.map