/** * Config show subcommand - displays effective configuration */ import type { Config } from "../../config/schema.js"; /** * Options for showConfig */ export interface ShowConfigOptions { /** Output in JSON format instead of TOML */ json?: boolean; /** Show only a specific section */ section?: string; /** Include source information for each value */ sources?: boolean; } /** * Show configuration in the specified format */ export declare function showConfig(config: Config, options: ShowConfigOptions): string; //# sourceMappingURL=show.d.ts.map