import { Address } from "./address";
import { BirthData } from "./birthData";
import { IdentificationData } from "./identificationData";
import { Name } from "./name";
import { PhoneNumber } from "./phoneNumber";
import { Support } from "./support";
import { TaxInformation } from "./taxInformation";
import { WebData } from "./webData";
export declare class Individual {
    "birthData"?: BirthData | null;
    /**
    * The email address of the legal entity.
    */
    "email"?: string;
    "identificationData"?: IdentificationData | null;
    "name": Name;
    /**
    * The individual\'s nationality.
    */
    "nationality"?: string;
    "phone"?: PhoneNumber | null;
    "residentialAddress": Address;
    "support"?: Support | null;
    /**
    * The tax information of the individual.
    */
    "taxInformation"?: Array<TaxInformation>;
    "webData"?: WebData | 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();
}
