import { type OrchestratorCallbacks, type OrchestratorResult } from './orchestrator.js'; /** * Run tasks in parallel using git worktrees for isolation. * * Each task gets its own worktree (a separate working directory backed by * the same git object store). Coder agents run concurrently in isolated * worktrees. Merges into the session branch are serialized via a lock. */ export declare function runParallelOrchestrator(sessionId: string, repoPath: string, sessionBranch: string, callbacks?: OrchestratorCallbacks, options?: { images?: string[]; }): Promise; //# sourceMappingURL=parallel-runner.d.ts.map