import { BaseEntity } from '../base-entity'; import { AlbumEntity } from './album-entity'; import { PhotoEntity } from './photo-entity'; import { UserProfileEntity } from './user-profile-entity'; import { UserRole } from './user-role-entity'; export declare class UserEntity extends BaseEntity { name?: string; email?: string; role?: UserRole; roles?: UserRole[]; tags?: string[]; profileId?: string; profile?: UserProfileEntity; followers?: UserEntity[]; photos?: PhotoEntity[]; albums?: AlbumEntity[]; }