import { ApplicationRef, DoCheck, ElementRef, NgZone } from '@angular/core'; import { Router } from '@angular/router'; import { AbstractDialogService, AbstractSpinnerService } from '@wm/core'; import { OAuthService } from '@wm/oAuth'; import { PipeProvider } from '../../services/pipe-provider.service'; interface SPINNER { show: boolean; messages: Array; } export declare class AppComponent implements DoCheck { private elRef; private oAuthService; private dialogService; private spinnerService; private router; startApp: boolean; isApplicationType: boolean; spinner: SPINNER; constructor(_pipeProvider: PipeProvider, _appRef: ApplicationRef, elRef: ElementRef, oAuthService: OAuthService, dialogService: AbstractDialogService, spinnerService: AbstractSpinnerService, ngZone: NgZone, router: Router); providersConfig: any; isOAuthDialogOpen: boolean; showOAuthDialog(): void; closeOAuthDialog(): void; ngDoCheck(): void; } export {};