/** * herdctl config - Configuration validation and inspection commands * * Commands: * - herdctl config validate Validate current config * - herdctl config validate --fix Show suggestions for fixes * - herdctl config show Show merged/resolved config * - herdctl config show --json JSON output */ export interface ConfigValidateOptions { fix?: boolean; config?: string; } export interface ConfigShowOptions { json?: boolean; config?: string; } /** * Validate the herdctl configuration */ export declare function configValidateCommand(options: ConfigValidateOptions): Promise; /** * Show the merged/resolved configuration */ export declare function configShowCommand(options: ConfigShowOptions): Promise; //# sourceMappingURL=config.d.ts.map