/**
* Type of cardholder account used for the transaction. Allows a cardholder to select the type of account used for the transaction. Possible values: * **Default** * **Savings** * **Checking** * **CreditCard** * **Universal** * **Investment** * **CardTotals** * **EpurseCard**
*/
export declare enum AccountType {
    Default = "Default",
    Savings = "Savings",
    Checking = "Checking",
    CreditCard = "CreditCard",
    Universal = "Universal",
    Investment = "Investment",
    CardTotals = "CardTotals",
    EpurseCard = "EpurseCard"
}
