import { BaseEntity } from '../base-entity'; import { AlbumEntity } from './album-entity'; import { UserEntity } from './user-entity'; export declare class PhotoEntity extends BaseEntity { url?: string; user?: UserEntity; imageDepth?: number; album?: AlbumEntity; }