import { OnInit } from '@angular/core'; import { Router } from '@angular/router'; import { FormBuilder, FormGroup } from '@angular/forms'; import { NzNotificationService } from 'ng-zorro-antd/notification'; import { BitService, BitSupportService } from 'ngx-bit'; import { StorageMap } from '@ngx-pwa/local-storage'; import { IParticlesParams } from 'ng-particles'; import { MainService } from 'van-skeleton'; export declare class LoginComponent implements OnInit { bit: BitService; private mainService; private notification; private router; private fb; private support; private storageMap; form: FormGroup; users: any[]; logining: boolean; particlesOptions: IParticlesParams; constructor(bit: BitService, mainService: MainService, notification: NzNotificationService, router: Router, fb: FormBuilder, support: BitSupportService, storageMap: StorageMap); ngOnInit(): void; addUsername(username: string): void; deleteUsername(event: any, username: string): void; submit(data: any): void; }