import { OnInit } from '@angular/core'; import { Router } from '@angular/router'; import { ConfigService } from '../../core'; import { AuthService } from '../shared'; export declare class AuthFormComponent implements OnInit { auth: AuthService; private config; private router; alreadyConnectedDiv: boolean; private _alreadyConnectedDiv; backgroundDisable: boolean; private _backgroundDisable; private options; private user; visible: boolean; constructor(auth: AuthService, config: ConfigService, router: Router); ngOnInit(): void; protected login(): void; protected logout(): void; private analyzeRoute(); }