export declare enum TransactionStatus {
    Candidate = 0,
    Created = 1,
    Pending = 2,
    Settled = 3,
    Failed = 4,
}
