import { OnInit } from '@angular/core'; import { MatDialog } from '@angular/material'; import { FormBuilder, FormGroup, FormControl } from '@angular/forms'; import { Router } from '@angular/router'; import { BmErrorStateMatcher } from '../../../shared/classes/error-state-matcher'; import { AuthService } from '../../services/auth.service'; export declare class LoginFormComponent implements OnInit { private dialog; private auth; private fb; private router; passwordEncrypted: boolean; isRequesting: boolean; errorMatcher: BmErrorStateMatcher; logo: string; constructor(dialog: MatDialog, auth: AuthService, fb: FormBuilder, router: Router); loginForm: FormGroup; readonly email: FormControl; readonly password: FormControl; ngOnInit(): void; openForgotPassword(): void; login(): void; }