import { OnInit } from '@angular/core'; import { AuthService } from '../auth.service'; export declare class LoginComponent implements OnInit { auth: AuthService; username: string; password: string; constructor(auth: AuthService); ngOnInit(): void; login(): void; }