import { CreationEntityState } from "./CreationEntityState";
declare class AbstractApplicationUserUpdate {
    /**
    * The name used to identify the application user.
    */
    'name'?: string;
    /**
    * The maximum number of API requests that are accepted every 2 minutes.
    */
    'requestLimit'?: number;
    /**
    * The object's current state.
    */
    'state'?: CreationEntityState;
    static discriminator: string | undefined;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
export { AbstractApplicationUserUpdate };
