export declare enum TransactionStatus {
    OPEN = 0,
    STARTED = 1,
    RELEASED = 2,
    COMMITTED = 3,
    ROLLBACKED = 4
}
