import { TranslateService } from '@ngx-translate/core'; import { BehaviorSubject } from 'rxjs'; import { CheckForUpdateService } from './check-for-update.service'; import { LifeCycleService } from '../life-cycle/life-cycle.service'; export declare const SKIP_APP_INSTALL = "skip-app-install"; export declare class RootComponent { update: CheckForUpdateService; lifeCycle: LifeCycleService; promptEvent$: BehaviorSubject; constructor(update: CheckForUpdateService, translate: TranslateService, localId: string, lifeCycle: LifeCycleService); installPwa(): void; notInstallPwa(): void; }