export declare class TransactionManager {
    static withTransaction<T>(dbAccess: any, callback: (txOrSession: any) => Promise<T>): Promise<T>;
}
