/** * CLI entry point for team runtime. * Reads JSON config from stdin, runs startTeam/monitorTeam/shutdownTeam, * writes structured JSON result to stdout. * * Spawned by omx_run_team_start in state-server.ts. */ type TeamWorkerProvider = 'codex' | 'claude' | 'gemini'; export interface LivePaneState { paneIds: string[]; leaderPaneId: string; } export declare function loadLivePaneState(teamName: string, cwd: string): Promise; export declare function shutdownWithForceFallback(teamName: string, cwd: string): Promise; export declare function detectDeadWorkerFailure(deadWorkerCount: number, liveWorkerPaneCount: number, hasOutstandingWork: boolean, phase: string): { deadWorkerFailure: boolean; fixingWithNoWorkers: boolean; }; export declare function normalizeAgentTypes(raw: string[], workerCount: number): TeamWorkerProvider[]; export {}; //# sourceMappingURL=runtime-cli.d.ts.map