import { UserTypeEnum } from '../auth/UserTypeEnum';
/** specific fields for USER events */
export interface LogUserDetails {
    /** Description of the user */
    description: string;
    /** Group of the user */
    group: string;
    /** Email of the user */
    passwordRecoveryEmail?: string;
    /** Type of user created */
    userType?: UserTypeEnum;
}
//# sourceMappingURL=LogUserDetails.d.ts.map