import { OnDestroy, OnInit } from '@angular/core'; import { PersonDTO } from '../../../../../common/entities/PersonDTO'; import { DomSanitizer, SafeStyle } from '@angular/platform-browser'; import { PersonThumbnail, ThumbnailManagerService } from '../../gallery/thumbnailManager.service'; import { FacesService } from '../faces.service'; import { AuthenticationService } from '../../../model/network/authentication.service'; export declare class FaceComponent implements OnInit, OnDestroy { private thumbnailService; private sanitizer; private faceService; authenticationService: AuthenticationService; person: PersonDTO; size: number; thumbnail: PersonThumbnail; searchQueryDTOstr: string; constructor(thumbnailService: ThumbnailManagerService, sanitizer: DomSanitizer, faceService: FacesService, authenticationService: AuthenticationService); get CanUpdate(): boolean; ngOnInit(): void; getSanitizedThUrl(): SafeStyle; ngOnDestroy(): void; toggleFavourite($event: MouseEvent): Promise; }