/** * Setup Command * * One-time MCP configuration writer with explicit agent targeting. * Configures only the selected coding agent's MCP entry * in either global or project scope. */ interface SetupOptions { scope?: string; agent?: string; cliVersion?: string; cliSpec?: string; } export declare const setupCommand: (options?: SetupOptions) => Promise; export {};