import { OnInit } from '@angular/core'; import { FormBuilder, FormGroup } from '@angular/forms'; import { Router } from '@angular/router'; import { HttpClient } from '@angular/common/http'; import { TestQueryService } from "../../test-query.service"; import { NzMessageService } from 'ng-zorro-antd/message'; export declare class LoginComponent implements OnInit { private fb; router: Router; http: HttpClient; ml: TestQueryService; private message; validateForm: FormGroup; password: any; username: any; nowIp: any; submit(): void; goregister(): void; constructor(fb: FormBuilder, router: Router, http: HttpClient, ml: TestQueryService, message: NzMessageService); ngOnInit(): void; }