import type { NoydbStore } from '../../kernel/types.js'; import type { EnclaveKey } from '../../kernel/enclave/index.js'; import type { SatelliteSpec } from './types.js'; import type { SatelliteRegistry } from './registry.js'; /** Async post-registration: R-S9 marker reconcile + R-S1/R-S5 derivable-schema cross-check. Failures poison, never throw. */ export declare function postRegister(store: NoydbStore, vaultName: string, spec: SatelliteSpec, getDEK: (collectionName: string) => Promise, baseSchema: unknown, registry: SatelliteRegistry): Promise;