import { type DetectedAgent } from "./detect-agents.js"; export interface AgentTaskOptions { cwd: string; prompt: string; detected: DetectedAgent[]; watchRoots: string[]; verb?: string; } export interface AgentTaskResult { success: boolean; agentName?: string; changedFiles: number; errors: Array<{ name: string; error: string; }>; } export declare function runAgentTask(opts: AgentTaskOptions): Promise; //# sourceMappingURL=agent-run.d.ts.map