import { UserDTO, UserRoles } from '../../../../common/entities/UserDTO'; import { SearchQueryDTO } from '../../../../common/entities/SearchQueryDTO'; import { ContextUser } from '../../SessionContext'; export declare class UserEntity implements UserDTO, ContextUser { id: number; name: string; password: string; role: UserRoles; overrideAllowBlockList?: boolean; allowQuery?: SearchQueryDTO; blockQuery?: SearchQueryDTO; }