/** Indicates the financial purpose of the bank account. */ export declare const BankAccountType: { readonly Checking: "CHECKING"; readonly Savings: "SAVINGS"; readonly Investment: "INVESTMENT"; readonly Other: "OTHER"; readonly BusinessChecking: "BUSINESS_CHECKING"; }; export type BankAccountType = (typeof BankAccountType)[keyof typeof BankAccountType];