import type { Hash, Store } from "./types.js"; /** * Resolve a schema alias (e.g. "@ocas/output/put") to its hash via bootstrap, * then return a typed envelope ready for store.cas.put() or direct rendering. */ export declare function wrapEnvelope(store: Store, schemaAlias: string, value: unknown): Promise<{ type: Hash; value: unknown; }>; //# sourceMappingURL=wrap-envelope.d.ts.map