/** * `generacy cockpit mcp` command — Commander factory. Refuses to start on * worker containers via `GENERACY_CLUSTER_ROLE` (Q2-A defense-in-depth). * On orchestrator (or missing env), builds the MCP server and connects a * stdio transport. */ import { Command } from 'commander'; export interface CockpitMcpDeps { /** Injection seam for tests — bypass real stdio transport. */ makeTransport?: () => unknown; env?: NodeJS.ProcessEnv; stderr?: (line: string) => void; exit?: (code: number) => never; } export declare function cockpitMcpCommand(deps?: CockpitMcpDeps): Command; export declare function runCockpitMcp(deps?: CockpitMcpDeps): Promise; //# sourceMappingURL=index.d.ts.map