import { OnInit } from '@angular/core'; import { ActivatedRoute, Router } from '@angular/router'; import { UserContextService } from '../../services/service/user-context.service'; import { AppSwitcherService } from '../../services/service/app-switcher.service'; import { OfficeSwitcherService } from '../../services/service/office-switcher.service'; export declare class ErrorComponent implements OnInit { private router; private activatedRoute; private userContext; appSwitcher: AppSwitcherService; officeSwitcher: OfficeSwitcherService; errorIconType: string; errorTitle: string; errorMessage: string; errorCode: Number; dark: boolean; isAuthenticated: boolean; constructor(router: Router, activatedRoute: ActivatedRoute, userContext: UserContextService, appSwitcher: AppSwitcherService, officeSwitcher: OfficeSwitcherService); ngOnInit(): void; readonly currentOfficeTypeText: string; changeApp(): void; changeOffice(): void; login(): void; readonly homeRouter: string; }