import { type IdempotencyLedger } from "@vendoai/core"; import type { Db } from "./db-postgres.js"; /** 01 §12 — the `Idempotency-Key` replay ledger over `vendo_idempotency_ledger`, * the table this same database carries (schema.ts v8). Colocated with the * mutations it gates by construction: it runs on the handle the mutation runs * on, so the two commit or roll back together. */ export declare function createIdempotencyLedger(db: Db): IdempotencyLedger; //# sourceMappingURL=idempotency.d.ts.map