/** * Monitor — Vigil-parity background process management. * * Spawns a long-running command and lets the agent inspect/stream/stop it * without blocking the conversation. Used for: dev servers, watchers, * fuzzers, builds-in-progress. The Bash tool stays best for short * commands; Monitor takes over once `run_in_background: true` is desired. */ import type { ToolDefinition } from '../core/toolRuntime.js'; export declare function getMonitorRegistry(): ReadonlyMap; export declare function shutdownAllMonitors(): Promise; export declare function createMonitorTools(workingDir: string): ToolDefinition[]; //# sourceMappingURL=monitorTools.d.ts.map