/** * Setup Command * Configures APIClaw for MCP clients */ export interface SetupOptions { client?: string; config?: string; workspace?: string; dryRun?: boolean; force?: boolean; wizard?: boolean; all?: boolean; verbose?: boolean; } /** * Main setup command handler */ export declare function setupCommand(options: SetupOptions): Promise; //# sourceMappingURL=setup.d.ts.map