/** * CLI config helpers * * Why: Shared parsing and env override logic with tests. */ export declare function flagToEnvVar(flag: string): string; export declare function parseCliArgs(argv: string[]): Record; export declare function applyCliEnvOverrides(args: Record): void; //# sourceMappingURL=cli-config.d.ts.map