import { IDbState } from "./types"; export declare const runInDeferredTransaction: (state: IDbState, func: (state: IDbState) => Promise) => Promise; export declare const runInImmediateTransaction: (state: IDbState, func: (state: IDbState) => Promise) => Promise; export declare const runInExclusiveTransaction: (state: IDbState, func: (state: IDbState) => Promise) => Promise; export declare const runInTransaction: (state: IDbState, func: (state: IDbState) => Promise) => Promise;