/** * D5 — `vendo_delegate`'s motor, carried between the composition that builds it * and the two BYO shims that hand it to the tool pack. * * Internal wiring, not a host surface: a delegated run is the deployment's own * brain doing a whole task, and there is nothing for a host to swap or inspect — * so it stays off `Vendo` and rides a WeakMap keyed on the composition, the same * way the agent surface carries what `agent()` composed. */ import { type AgentRunner } from "./core/index.js"; import type { Vendo } from "./server.js"; export declare function setDelegateRunner(vendo: Vendo, runner: AgentRunner): void; export declare function delegateRunner(vendo: Vendo): AgentRunner;