/** Indicates the bank account payment's current status. */ export declare const TenderBankAccountDetailsStatus: { readonly Pending: "PENDING"; readonly Completed: "COMPLETED"; readonly Failed: "FAILED"; }; export type TenderBankAccountDetailsStatus = (typeof TenderBankAccountDetailsStatus)[keyof typeof TenderBankAccountDetailsStatus];