import type { InteractiveModeContext } from "../types"; export declare class MCPCommandController { #private; private ctx; constructor(ctx: InteractiveModeContext); /** * Handle /mcp command and route to subcommands */ handle(text: string): Promise; }