import { Database } from "./Database"; declare const valueTag: unique symbol; export type TransactionSetStore = { [fileNumber: string]: Uint8Array; [valueTag]?: Value; }; export declare function transactionRead(database: Database>): Map | undefined; export declare function replayTransactionStore(store: TransactionSetStore | undefined): Map; export declare function transactionMutate(database: Database>, transactions: { key: string; value: Value | undefined; }[], compactAfterFiles?: number): void; export declare function transactionDelete(database: Database>): void; export {};