/** * Selective LMDB domain and subdb inspection for maintainers. * * The mailbox subsystem is easiest to debug when the operator inspects the * domain that actually owns the state in question: * - `baser` for protocol truth such as `ends` and `tops` * - `mailboxer` for provider-side stored inbox traffic * - `outboxer` for the optional Tufa-only sender retry sidecar */ import { type Operation } from "effection"; /** * Dump one LMDB domain summary or one specific subdb. * * Target examples: * - `baser` * - `baser.ends` * - `mailboxer` * - `mailboxer.tpcs` * - `outboxer.tgts` */ export declare function dumpDatabase(args: Record): Operation; export declare const dumpEvts: typeof dumpDatabase; //# sourceMappingURL=db-dump.d.ts.map