import { OnInit } from '@angular/core'; import { HeaderService } from '../header/header.service'; import { NecAuthService } from '../../service/auth/auth.service'; import { NecLoadingConfig } from '../loading/loading-config'; import { NecLoadingService } from '../loading/loading.service'; import { NecToast } from '../../service/toast/toast.service'; import { Router } from '@angular/router'; import { UserInterface } from '../../service/user/user.interface'; import { UserService } from '../../service/user/user.service'; export declare class NecLoginComponent implements OnInit { private authService; private headerService; private router; private toast; private loadingService; private userInterface; private userService; username: string; password: string; isAdminProject: boolean; loading: NecLoadingConfig; constructor(authService: NecAuthService, headerService: HeaderService, router: Router, toast: NecToast, loadingService: NecLoadingService, userInterface: UserInterface, userService: UserService); ngOnInit(): void; login(): void; }