/// import { Overwrite } from '@epam/uui-core'; import { NumericInputProps as uuiNumericInputProps } from '@epam/uui-components'; import { IHasEditMode } from '../types'; type NumericInputMods = IHasEditMode & { /** * Defines component size * @default '36' */ size?: '24' | '30' | '36' | '42' | '48'; }; export interface NumericInputModsOverride { } /** Represents the properties of a NumericInput component. */ export interface NumericInputProps extends uuiNumericInputProps, Overwrite { } export declare const NumericInput: import("react").ComponentType>; export {}; //# sourceMappingURL=NumericInput.d.ts.map