import { ApplicationUser } from "./ApplicationUser";
declare class ApplicationUserCreateWithMacKey extends ApplicationUser {
    /**
    * The user's authentication key securing requests. Only displayed a single time after the user has been created.
    */
    'macKey'?: string;
    static discriminator: string | undefined;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
export { ApplicationUserCreateWithMacKey };
