#!/usr/bin/env node /** * @fileoverview Command-line interface for codebase-map * * Provides commands for scanning codebases, updating indexes, formatting output, * and listing files with comprehensive pattern support for include/exclude filtering. * * @example * ```bash * # Basic usage * codebase-map scan * * # With patterns * codebase-map scan --include "src/**" --exclude "**\/*.test.ts" * * # Format output * codebase-map format --format dsl * ``` * * @author codebase-map * @version Dynamic (read from package.json) */ /** * Main CLI runner function * @param args - Command line arguments (defaults to process.argv) */ export declare function runCli(args?: string[]): Promise; //# sourceMappingURL=cli.d.ts.map