/** * Config path subcommand - shows configuration file paths and their status */ /** * Options for showConfigPaths */ export interface ShowPathsOptions { /** Show only user config path */ user?: boolean; /** Show only local config path */ local?: boolean; } /** * Context for config path resolution */ export interface PathContext { /** Current working directory */ cwd?: string; /** User config path (for testing) */ userConfigPath?: string; } /** * Show configuration file paths and their status. * * When --user or --local is provided, returns only that path (no label). * Otherwise, shows all paths with labels and existence status. */ export declare function showConfigPaths(options: ShowPathsOptions, context?: PathContext): string; //# sourceMappingURL=path.d.ts.map