import { NgbModal } from '@ng-bootstrap/ng-bootstrap'; import { OnInit } from '@angular/core'; import { FormGroup } from '@angular/forms'; import { ActivatedRoute, Router } from '@angular/router'; import { FormOptions, TextBoxOptions } from '@bnsights/bbsf-controls'; import { AuthService, AuthenticationModes, EnvironmentService, UtilityService } from '@bnsights/bbsf-utilities'; import { Observable } from 'rxjs'; import { AccountService } from '../../shared/Services/AccountService.service'; import { HttpErrorResponse } from '@angular/common/http'; import * as i0 from "@angular/core"; export declare class LoginComponent implements OnInit { private authService; private environmentService; private accountService; private router; private route; utilityService: UtilityService; private modalService; isEnglish: boolean; loginForm: FormGroup<{}>; loginFormOptions: FormOptions; email: TextBoxOptions; password: TextBoxOptions; error: string; language: string; loginImage: string; authenticationMode: string; authenticationModeEnums: typeof AuthenticationModes; loadPage: boolean; constructor(authService: AuthService, environmentService: EnvironmentService, accountService: AccountService, router: Router, route: ActivatedRoute, utilityService: UtilityService, modalService: NgbModal); ngOnInit(): void; getLoginModel: () => any[]; getLoginFunction: (model: any) => Observable; onSuccessHandler: (result: any) => Promise; OnErrorHandler: (error: HttpErrorResponse) => void; loginWithUAEPass(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }