/** * Background process management — start_process, check_process, stop_process. * * Mirrors `_harness/_processes.py`. Long-running commands (dev servers, * builds) get a stable id so the LLM can poll status and read output. */ import { type SandboxPolicy } from "./sandbox.js"; import { type HarnessTool } from "./types.js"; export declare function processTools(sandbox: SandboxPolicy): HarnessTool[]; //# sourceMappingURL=processes.d.ts.map