import { AULocalAccountIdentification } from "./aULocalAccountIdentification";
import { BRLocalAccountIdentification } from "./bRLocalAccountIdentification";
import { CALocalAccountIdentification } from "./cALocalAccountIdentification";
import { CZLocalAccountIdentification } from "./cZLocalAccountIdentification";
import { DKLocalAccountIdentification } from "./dKLocalAccountIdentification";
import { HKLocalAccountIdentification } from "./hKLocalAccountIdentification";
import { HULocalAccountIdentification } from "./hULocalAccountIdentification";
import { IbanAccountIdentification } from "./ibanAccountIdentification";
import { NOLocalAccountIdentification } from "./nOLocalAccountIdentification";
import { NZLocalAccountIdentification } from "./nZLocalAccountIdentification";
import { NumberAndBicAccountIdentification } from "./numberAndBicAccountIdentification";
import { PLLocalAccountIdentification } from "./pLLocalAccountIdentification";
import { SELocalAccountIdentification } from "./sELocalAccountIdentification";
import { SGLocalAccountIdentification } from "./sGLocalAccountIdentification";
import { UKLocalAccountIdentification } from "./uKLocalAccountIdentification";
import { USLocalAccountIdentification } from "./uSLocalAccountIdentification";
/**
* Contains the bank account details. The fields required in this object depend on the country of the bank account and the currency of the transfer.
*/
/**
 * @type BankAccountAccountIdentification
 * Type
 * @export
 */
export type BankAccountAccountIdentification = AULocalAccountIdentification | BRLocalAccountIdentification | CALocalAccountIdentification | CZLocalAccountIdentification | DKLocalAccountIdentification | HKLocalAccountIdentification | HULocalAccountIdentification | IbanAccountIdentification | NOLocalAccountIdentification | NZLocalAccountIdentification | NumberAndBicAccountIdentification | PLLocalAccountIdentification | SELocalAccountIdentification | SGLocalAccountIdentification | UKLocalAccountIdentification | USLocalAccountIdentification;
/**
* @type BankAccountAccountIdentificationClass
    * Contains the bank account details. The fields required in this object depend on the country of the bank account and the currency of the transfer.
* @export
*/
export declare class BankAccountAccountIdentificationClass {
    static readonly discriminator: string | undefined;
    static readonly mapping: {
        [index: string]: string;
    } | undefined;
}
