import { OnDestroy, OnInit } from '@angular/core'; import { AuthenticationService } from './model/network/authentication.service'; import { Title } from '@angular/platform-browser'; import { ShareService } from './ui/gallery/share.service'; import 'hammerjs'; import { NavigationService } from './model/navigation.service'; import { ThemeService } from './model/theme.service'; export declare class AppComponent implements OnInit, OnDestroy { private authenticationService; private shareService; private navigation; private title; private themeService; private subscription; constructor(authenticationService: AuthenticationService, shareService: ShareService, navigation: NavigationService, title: Title, themeService: ThemeService); ngOnInit(): Promise; ngOnDestroy(): void; }