import { ElementRef } from '@angular/core'; import { InputComponent } from './template-form'; export declare class NumericComponent extends InputComponent { step: number; min: number; max: number; decimalSeparator: string; thousandSeparator: string; autofocus: boolean; selectOnFocus: boolean; autoComplete: boolean; style: any; placeholder: string; input: ElementRef; onFocus(event: any): void; setDisabledState(isDisabled: boolean): void; onSpinUp(input: any, event: any): void; onPaste(event: any): void; onSpinDown(input: any, event: any): void; onKeyPress(event: any): void; private spin; } export declare class NumericModule { }