/** * Enable the sealed-record (grantor-side) capability. * Pass to `createNoydb({ sealedRecordStrategy: withSealedRecord() })` to make a * vault's `sealRecordToHost` / `revokeSealedRecord` / `rotateRecordCek` methods * live. The `record-keys` grantor engine is dynamically imported here, so it is * reached only via opt-in. */ import type { SealedRecordStrategy } from './strategy.js'; export declare function withSealedRecord(): SealedRecordStrategy;