declare enum AccountType {
    MASTER = "MASTER",
    REGULAR = "REGULAR",
    SUBACCOUNT = "SUBACCOUNT"
}
export { AccountType };
