import { OnInit } from '@angular/core'; import { AuthenticationService } from '../../model/network/authentication.service'; import { NavigationService } from '../../model/navigation.service'; import { ShareService } from '../gallery/share.service'; export declare class ShareLoginComponent implements OnInit { shareService: ShareService; private authService; private navigation; password: string; loginError: boolean; inProgress: boolean; title: string; constructor(shareService: ShareService, authService: AuthenticationService, navigation: NavigationService); ngOnInit(): void; onLogin(): Promise; }