import { OnDestroy, OnInit } from "@angular/core"; import { ActivatedRoute } from "@angular/router"; import { EmployeeSummaryService } from "./employee-summary.service"; export interface IEmployeeSummary { name: string; jobPosition: string; photoSource?: string; employer?: string; location?: string; hireDate?: any; registernumber?: any; timeTrackingResumeType?: string; age?: string; } export declare class EmployeeSummaryComponent implements OnInit, OnDestroy { private activatedRoute; private employeeService; timetrackingLabel: string; hireDate: string; hireLabel: string; registerNumberLabel: string; ageLabel: string; loadingLabel: string; loadingDescription: string; emploayeeData: IEmployeeSummary; isLoading: boolean; private ngUnsubscribe; constructor(activatedRoute: ActivatedRoute, employeeService: EmployeeSummaryService); ngOnInit(): void; ngOnDestroy(): void; private getInformation; }