import { ElementRef, EventEmitter, OnInit } from '@angular/core'; import { UntypedFormControl, FormGroupDirective, NgForm } from '@angular/forms'; import { ErrorStateMatcher } from '@angular/material/core'; import { ActionService } from '../../services/action/action.service'; import { OpenViduAngularConfigService } from '../../services/config/openvidu-angular.config.service'; import * as i0 from "@angular/core"; export declare class AdminLoginComponent implements OnInit { private libService; private actionService; onLoginButtonClicked: EventEmitter; checkingLogged: boolean; secret: string; showSpinner: boolean; loginFormControl: UntypedFormControl; matcher: FormErrorStateMatcher; submitBtn: ElementRef; loginForm: ElementRef; private errorSub; constructor(libService: OpenViduAngularConfigService, actionService: ActionService); ngOnInit(): void; ngOnDestroy(): void; login(): void; submitForm(): void; private subscribeToAdminLoginDirectives; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export declare class FormErrorStateMatcher implements ErrorStateMatcher { isErrorState(control: UntypedFormControl | null, form: FormGroupDirective | NgForm | null): boolean; }