import { PersonJunctionTable } from './PersonJunctionTable'; import { PersonDTO } from '../../../../common/entities/PersonDTO'; export declare class PersonEntry implements PersonDTO { id: number; name: string; count: number; isFavourite: boolean; faces: PersonJunctionTable[]; sampleRegion: PersonJunctionTable; missingThumbnail?: boolean; }