import { BotGuardConfig } from '../config'; import { ProtectAllArgs } from './mcpGateway'; export interface InstallAllArgs extends ProtectAllArgs { apiKey?: string; cursorProject?: string; upload?: string; hooks?: string; discover?: string; schedule?: string; scheduleHour?: string; autoProtect?: string; intervalMinutes?: string; windowsAudit?: string; shellGuard?: string; cmdGuard?: string; posixGuard?: string; } /** * One-click install: discover/wrap every existing MCP server, install Cursor * hooks for built-in Cursor actions, optional self-heal and fleet upload. */ export declare function installAllCommand(args: InstallAllArgs, config: BotGuardConfig): Promise;