import { AULocalAccountIdentification } from "./aULocalAccountIdentification";
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";
/**
* Identification of the bank account.
*/
/**
 * @type BankAccountInfoAccountIdentification
 * Type
 * @export
 */
export type BankAccountInfoAccountIdentification = AULocalAccountIdentification | CALocalAccountIdentification | CZLocalAccountIdentification | DKLocalAccountIdentification | HKLocalAccountIdentification | HULocalAccountIdentification | IbanAccountIdentification | NOLocalAccountIdentification | NZLocalAccountIdentification | NumberAndBicAccountIdentification | PLLocalAccountIdentification | SELocalAccountIdentification | SGLocalAccountIdentification | UKLocalAccountIdentification | USLocalAccountIdentification;
/**
* @type BankAccountInfoAccountIdentificationClass
    * Identification of the bank account.
* @export
*/
export declare class BankAccountInfoAccountIdentificationClass {
    static readonly discriminator: string;
    static readonly mapping: {
        [index: string]: string;
    } | undefined;
}
