import { ElementRef, EventEmitter, OnInit } from '@angular/core'; import { AbstractControl, FormGroup } from '@angular/forms'; export declare class PasswordComponent implements OnInit { SECRET_KEY: string; name: string; length: string; caption: string; placeholder: string; readonly: boolean; control: AbstractControl; enabled: Boolean; value: string; glyph: string; valueChange: EventEmitter; form: FormGroup; error: any; required: boolean; displayCharacterCounter: boolean; password: ElementRef; elementRef: ElementRef; visible: boolean; constructor(elementRef: ElementRef); ngOnInit(): void; ngAfterViewInit(): void; getPasswordEncrypted(): string; setPasswordEncrypted($event: any): void; returnError(): void; }