import { CreationEntityState } from "./CreationEntityState";
declare class AbstractHumanUserUpdate {
    /**
    * The user's email address.
    */
    'emailAddress'?: string;
    /**
    * The user's first name.
    */
    'firstname'?: string;
    /**
    * The user's preferred language.
    */
    'language'?: string;
    /**
    * The user's last name.
    */
    'lastname'?: string;
    /**
    * The user's mobile phone number.
    */
    'mobilePhoneNumber'?: string;
    /**
    * The object's current state.
    */
    'state'?: CreationEntityState;
    /**
    * The user's time zone. If none is specified, the one provided by the browser will be used.
    */
    'timeZone'?: string;
    /**
    * Whether two-factor authentication is enabled for this user.
    */
    'twoFactorEnabled'?: boolean;
    static discriminator: string | undefined;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
export { AbstractHumanUserUpdate };
