import { IDbState, ITransaction } from "./types"; export declare const runAfterTransactionCommitted: (db: IDbState, func: (db: IDbState, transaction: ITransaction) => void) => void; export declare const runAfterTransactionRollbacked: (db: IDbState, func: (db: IDbState, transaction: ITransaction) => void) => void;