import type { AgComponentSelector } from '../interfaces/agComponent'; import type { AgCoreBeanCollection } from '../interfaces/agCoreBeanCollection'; import type { BaseEvents } from '../interfaces/baseEvents'; import type { BaseProperties } from '../interfaces/baseProperties'; import type { IPropertiesService } from '../interfaces/iProperties'; import type { AgInputTextFieldParams } from './agInputTextField'; import { AgInputTextField } from './agInputTextField'; import type { AgWidgetSelectorType } from './agWidgetSelectorType'; /** @internal AG_GRID_INTERNAL - Not for public use. Can change / be removed at any time. */ export interface AgInputNumberFieldParams extends AgInputTextFieldParams { precision?: number; step?: number; min?: number; max?: number; } /** @internal AG_GRID_INTERNAL - Not for public use. Can change / be removed at any time. */ export declare class AgInputNumberField, TProperties extends BaseProperties, TGlobalEvents extends BaseEvents, TCommon, TPropertiesService extends IPropertiesService, TComponentSelectorType extends string> extends AgInputTextField> { private precision?; private step?; private min?; private max?; constructor(config?: AgInputNumberFieldParams); postConstruct(): void; private onWheel; 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 | null, silent?: boolean): this; setStartValue(value?: string | null): void; private setValueOrInputValue; getValue(ignoreValidity?: boolean): string | null | undefined; private isScientificNotation; } /** @internal AG_GRID_INTERNAL - Not for public use. Can change / be removed at any time. */ export declare const AgInputNumberFieldSelector: AgComponentSelector;