export declare enum AccountType {
    Current = "CURRENT",
    Savings = "SAVINGS",
    Business = "BUSINESS",
    CreditCard = "CREDIT_CARD",
    Loan = "LOAN",
    Unknown = "UNKNOWN"
}
