declare enum BankAccountState {
    CREATE = "CREATE",
    ACTIVE = "ACTIVE",
    DELETING = "DELETING",
    DELETED = "DELETED"
}
export { BankAccountState };
