declare enum BankTransactionState {
    UPCOMING = "UPCOMING",
    SETTLED = "SETTLED"
}
export { BankTransactionState };
