import type { VendoComposition } from "./compose-context.js"; /** One deployment came up. Emitted by `createComposition` once every phase has * run, because that is the first moment the answer exists: the connections * adapter is not chosen until compose-discovery.ts, so a boot event raised * mid-composition could only report the host's config. */ export declare const emitDeploymentBoot: (composition: VendoComposition) => void; /** The discovery pair, the knowledge tool, and the capability-miss surface. */ export declare const composeTools: (composition: VendoComposition) => Pick;