import { AbstractApplicationUserUpdate } from "./AbstractApplicationUserUpdate";
declare class ApplicationUserCreate extends AbstractApplicationUserUpdate {
    /**
    * The primary account that the user belongs to.
    */
    'primaryAccount': number;
    static discriminator: string | undefined;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
export { ApplicationUserCreate };
