export interface OrchestrateCliOptions { domain: string; aiProvider?: string; aiModel?: string; aiKey?: string; maxCostUsd?: number; maxToolCalls?: number; maxWallSeconds?: number; watchdogIntervalCalls?: number; ndjsonPath?: string; manifestOut?: string; noColor?: boolean; quiet?: boolean; } /** * Run the orchestrator from the CLI. Streams events live, then prints a * summary block (manifest stats + validation failures + diff overview) at * the end. Exits 0 on `completed` with all patches valid; non-zero * otherwise. */ export declare function runOrchestrateCommand(opts: OrchestrateCliOptions): Promise; //# sourceMappingURL=orchestrate.d.ts.map