import type { AgStudioCommon } from '../../api/agStudioCommon'; import type { AgStudioSelectorType } from '../../api/agStudioSelector'; import type { AgStudioLocaleKey } from '../../api/studioLocaleKey'; import { AgInputNumberField } from 'ag-grid-enterprise'; import type { AgInputNumberFieldParams } from 'ag-grid-enterprise'; import type { PropertiesService } from '../core/beans/propertiesService'; import type { BeanCollection } from '../interfaces/beanCollection'; import type { StudioEvents } from '../interfaces/studioEvents'; import type { StudioPropertiesWithDefaults } from '../interfaces/studioProperties'; export interface OptionalNumberInputFieldParams extends Omit, 'inputPlaceholder'> { autoLabel?: AgStudioLocaleKey; } export declare class OptionalNumberInputField extends AgInputNumberField { private readonly autoLabel; constructor(options?: OptionalNumberInputFieldParams); postConstruct(): void; }