import { OnInit } from '@angular/core'; import { MatDialogRef } from '@angular/material/dialog'; import { FormControl } from '@angular/forms'; import { Router } from '@angular/router'; import { AuthService } from 'my-lib-sanfelici'; export declare class LoginMailComponent implements OnInit { private router; private authservice; dialogRef: MatDialogRef; errorMessage: string; error: { name: string; message: string; }; resetPassword: boolean; email: FormControl; password: FormControl; constructor(router: Router, authservice: AuthService, dialogRef: MatDialogRef); ngOnInit(): void; onNoClick(): void; getErrorMessage(): "" | "inserisci email" | "email non valida"; getErrorPassword(): "" | "inserisci password"; getErrorPasswordInvalid(): string; login(email: string, password: string): void; }