// Type definitions for @dyna-grid/core v1.1.4 // Project: // Definitions by: zhangkun <> import { DyInputTextField, ITextInputField } from "./dyInputTextField"; export declare class DyInputNumberField extends DyInputTextField { private precision?; private step?; private min?; private max?; constructor(config?: ITextInputField); postConstruct(): void; normalizeValue(value: string): string; private adjustPrecision; setMin(min: number | undefined): this; setMax(max: number | undefined): this; setPrecision(precision: number): this; setStep(step?: number): this; setValue(value: string, silent?: boolean): this; }