import { OnInit } from '@angular/core'; import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap'; import { FormBuilder, FormGroup, AbstractControl } from '@angular/forms'; import { LoginRequestsService, LocalStorage, AuthService } from 'finpass-angular-services'; import { ToastrService } from 'ngx-toastr'; export declare class ChangeModalComponent implements OnInit { activeModal: NgbActiveModal; private fb; private loginService; private toastr; private localStorage; private authService; entity: string; form: FormGroup; loginType: string; constructor(activeModal: NgbActiveModal, fb: FormBuilder, loginService: LoginRequestsService, toastr: ToastrService, localStorage: LocalStorage, authService: AuthService); ngOnInit(): void; readonly password: AbstractControl; readonly newPassword: AbstractControl; readonly newPasswordConfirm: AbstractControl; passwordsMatch(fg: any): { 'mismatch': boolean; }; submit(fg: any): void; }