import { AuditChainVerifyResult } from "./types.js"; import { AuditDb } from "./audit-db.js"; //#region src/audit/verify-chain.d.ts /** * Walk the audit chain inside the supplied bounds and return the * first divergent link (if any) plus the entry count traversed. The * function never throws; callers branch on the discriminated `ok` * field. * * @stable */ declare function verifyAuditChain(db: AuditDb, bounds?: { readonly fromSeq?: number; readonly toSeq?: number; }): Promise; //#endregion export { verifyAuditChain }; //# sourceMappingURL=verify-chain.d.ts.map