import { EventEmitter, OnInit } from '@angular/core'; import { AbstractControl, FormGroup } from '@angular/forms'; import { ChangePasswordService } from './change-password.service'; import { ResponseMessage } from './domain/response.message'; import { PasswordInfo } from './domain/password.info'; export declare class ChangePasswordComponent implements OnInit { private passwordService; HTTPOptions: {}; api: any; response: EventEmitter<{}>; resetClicked: EventEmitter<{}>; successMessage: any; resetPasswordForm: FormGroup; confirmPassword: string; resetPasswordRespond: ResponseMessage; passwordInfo: PasswordInfo; ngOnInit(): void; readonly confirmPass: AbstractControl; readonly newPass: AbstractControl; readonly currentPass: AbstractControl; reset(): void; setValue(): void; constructor(passwordService: ChangePasswordService); }