/** * Zod schemas for Vercel global config types. * * Types are defined in types.ts (source of truth). * Schemas are generated by ts-to-zod and re-exported here with runtime * passthrough behavior for unrecognized config keys. */ import { z } from 'zod'; import type { AuthConfig, CredStorage, GlobalConfig, GuidanceConfig, TelemetryConfig, UpdatesConfig } from './types'; export declare const telemetryConfigSchema: z.ZodType; export declare const guidanceConfigSchema: z.ZodType; export declare const updatesConfigSchema: z.ZodType; export declare const credStorageSchema: z.ZodType; export declare const globalConfigSchema: z.ZodType; export declare const authConfigSchema: z.ZodType;