/** * @copyright NIIT Technologies Ltd. 2017-18. */ import { NgZone, ElementRef, Renderer } from '@angular/core'; import { ControlComponent } from '../../core/component/control.component'; /** * Password Input */ export declare class NgcPasswordInputComponent extends ControlComponent { private ngZone; private elementRef; private rendererRef; localization: any; maxLength: any; placeHolder: any; passwordStrength: any; rtl: any; strengthColors: any; showStrength: any; showStrengthPosition: any; strengthTypeRenderer: any; showPasswordIcon: any; theme: any; width: any; height: any; autoCreate: boolean; /** * Initialize */ constructor(ngZone: NgZone, elementRef: ElementRef, rendererRef: Renderer); /** * On Input Change * * @param Event */ inputChange($e: any): void; } /** * Password Input Module */ export declare class NgcPasswordInputModule { }