import type { AgentRuntime } from "./agent-runtime.js"; import type { CueSink } from "./cue-runtime.js"; import type { Hab, Habery } from "./habbing.js"; /** * Create the cue sink that actually posts outbound `qry` messages. * * Ownership split: * - `QueryCoordinator` decides *that* a query should be emitted and who it * should target * - this sink decides *how* to deliver the already-chosen wire message */ export declare function queryTransportSink(runtime: AgentRuntime, hby: Habery, hab: Hab): CueSink; //# sourceMappingURL=query-transport.d.ts.map