import { OnInit, ElementRef } from '@angular/core'; import { Router, ActivatedRoute } from '@angular/router'; import { Principal } from '../../services/auth/principal.service'; import { CoreConfigService } from '../../services/config/core-config.service'; import { AppSettingService } from '../../services/service/app-setting.service'; import { UserContextService } from '../../services/service/user-context.service'; import { ResetPasswordService } from '../../services/auth/reset-password.service'; export declare class AppEntryComponent implements OnInit { private elementRef; private router; private activatedRoute; private principal; private appSettings; private configService; private userContext; private resetPasswordService; isReady: boolean; readyError: string; loadingMessage: string; private hiddenScrolling; private _checkStateTimer; private _stateSubscription; constructor(elementRef: ElementRef, router: Router, activatedRoute: ActivatedRoute, principal: Principal, appSettings: AppSettingService, configService: CoreConfigService, userContext: UserContextService, resetPasswordService: ResetPasswordService); ngOnInit(): void; routerSubscribe(): void; goHomeOrLogin(): void; goHome(): void; }