import type { Hash, Store } from "./types.js"; /** * Write the meta-schema seed node into the store and register built-in schemas. * The returned object contains aliases for the meta-schema, primitive schemas, * and @ocas/output/* schemas. * Idempotent: calling bootstrap multiple times returns the same hashes. * * All aliases are written to `store.var` via `var.set(name, hash)`, bypassing * @ocas/ namespace protection (protection is enforced only at the CLI layer). */ export declare function bootstrap(store: Store): Record; //# sourceMappingURL=bootstrap.d.ts.map