/** Indicates the current verification status of a `BankAccount` object. */ export declare const BankAccountStatus: { readonly VerificationInProgress: "VERIFICATION_IN_PROGRESS"; readonly Verified: "VERIFIED"; readonly Disabled: "DISABLED"; }; export type BankAccountStatus = (typeof BankAccountStatus)[keyof typeof BankAccountStatus];