import type { ToolPlugin } from "./types.js"; /** * Workflow tool plugin for executing deterministic multi-subagent orchestration scripts. * * The AI model calls this tool with a JavaScript script that orchestrates * multiple subagents via agent(), parallel(), pipeline(), phase(), log() APIs. * Workflows run in the background — the tool returns immediately with a run ID, * and a arrives when the workflow completes. */ export declare const workflowTool: ToolPlugin;