/** * CLI Setup Command * * Detects installed MCP clients and helps configure them to use search-mcp. * Supports Claude Desktop, Claude Code, Cursor, and Windsurf. * * Enhanced flow (SMCP-088): * 1. Configure MCP client(s) * 2. Ask if user wants to index the current project * 3. If index exists, offer to delete and recreate * 4. Run indexing with progress display */ /** * Options for setup command */ export interface SetupOptions { /** Show verbose logging output (default: false) */ verbose?: boolean; } /** * Main setup flow * @param options - Setup options including verbose flag */ export declare function runSetup(options?: SetupOptions): Promise; /** * Print version info */ export declare function printVersion(): void; /** * Show log file locations */ export declare function showLogs(): void; /** * Print help */ export declare function printHelp(): void; //# sourceMappingURL=setup.d.ts.map