import { USER_ROLES_GLOBAL, UserProfile } from ".."; export declare class UserBaseDto { title?: string; firstName?: string; lastName?: string; email?: string; phoneNumber?: string; roles?: USER_ROLES_GLOBAL[]; profile?: UserProfile; additionalInfo?: any; userData?: any; isBlocked?: boolean; }