export declare class Identity {
    /**
    * The complete legal name of the individual or entity.
    */
    "fullLegalName": string;
    /**
    * A commonly used or human-readable name for the individual or entity.
    */
    "name": string;
    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();
}
