import type { VendoComposition } from "./compose-context.js"; import type { Vendo } from "./types.js"; import { type WireDeps } from "./wire/shared.js"; /** Everything the wire handler reads off this composition. */ export declare const wireDepsFor: (composition: VendoComposition) => WireDeps; /** 09-vendo §2 — the handle a host holds: every composed block, plus the two * doors (`handler`, `emit`) that latch readiness on first touch. */ export declare const vendoInstance: (composition: VendoComposition, handler: (request: Request) => Promise) => Vendo;