/** * Enable the sovereign-custody (FR-6) capability. * Pass to `createNoydb({ custodyStrategy: withCustody() })` to make * `db.grantCustodian` / `db.revokeCustodian` (and the `vault.custody.*` facade * that delegates to them) plus `vault.custody.liberate()` live. The heavy * `liberateVault` ceremony is dynamically imported here, so it is reached only * via opt-in; grant/revoke run the host's own gate + keyring engine. */ import type { CustodyStrategy } from './strategy.js'; export declare function withCustody(): CustodyStrategy;