/** * @copyright NIIT Technologies Ltd. 2017-18. */ import { NgZone, ElementRef, Renderer } from '@angular/core'; import { ControlComponent } from '../../core/component/control.component'; /** * Number Input */ export declare class NgcNumberInputComponent extends ControlComponent { private ngZone; private elementRef; private rendererRef; allowNull: any; decimal: any; decimalDigits: any; decimalSeparator: any; digits: any; groupSeparator: any; groupSize: any; inputMode: any; min: any; max: any; negativeSymbol: any; placeHolder: any; promptChar: any; rtl: any; readOnly: any; spinMode: any; spinButtons: any; spinButtonsWidth: any; spinButtonsStep: any; symbol: any; symbolPosition: any; textAlign: any; template: 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; } /** * Number Input Module */ export declare class NgcNumberInputModule { }