import { ACHAccountIdentifier } from "./aCHAccountIdentifier";
import { BACSAccountIdentifier } from "./bACSAccountIdentifier";
import { BSBAccountIdentifier } from "./bSBAccountIdentifier";
import { EFTAccountIdentifier } from "./eFTAccountIdentifier";
import { IBANAccountIdentifier } from "./iBANAccountIdentifier";
import { RIXAccountIdentifier } from "./rIXAccountIdentifier";
export declare class AccountIdentifiers {
    "ach"?: ACHAccountIdentifier | null;
    "bacs"?: BACSAccountIdentifier | null;
    "bsb"?: BSBAccountIdentifier | null;
    "eft"?: EFTAccountIdentifier | null;
    "iban"?: IBANAccountIdentifier | null;
    "rix"?: RIXAccountIdentifier | null;
    static readonly discriminator: string | undefined;
    static readonly mapping: {
        [index: string]: string;
    } | undefined;
    static readonly attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
        format: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
        format: string;
    }[];
    constructor();
}
