import { OnInit, OnDestroy, AfterViewInit } from '@angular/core'; import { ACCom } from '../../../../services/ac-com.service'; import { ActivatedRoute } from "@angular/router"; export declare class ACChangePWComponent implements OnInit, AfterViewInit, OnDestroy { acCom: ACCom; private route; username: string; oldPAssword: any; newPassword: any; newPasswordRepeat: any; message: any; password: any; parentId: string; addClass: string; constructor(acCom: ACCom, route: ActivatedRoute); ngAfterViewInit(): void; ngOnInit(): void; ngOnDestroy(): void; cancel(): void; doLogin(): void; doChange(): void; }