import type { ExtensionAPI, ExtensionContext } from "@earendil-works/pi-coding-agent"; import type { AgentManager } from "./agent-manager.js"; import type { RunnerBackend } from "./types.js"; interface WorkflowToolOptions { pi: ExtensionAPI; manager: Pick; getRunnerBackend: (ctx: Pick) => RunnerBackend; reloadAgents: () => void; onProgress?: () => void; } export declare function registerWorkflowTool(options: WorkflowToolOptions): void; export {};