import type { IInputProps, IBoxProps, IStackProps } from '../../primitives'; export type INumberInputProps = IInputProps & IBoxProps & { onChange?: (value: number) => void; min?: number; max?: number; step?: number; precision?: number; isReadOnly?: boolean; isInvalid?: boolean; isDisabled?: boolean; keepWithinRange?: boolean; allowMouseWheel?: boolean; clampValueOnBlur?: boolean; focusInputOnChange?: boolean; getAriaValueText?: boolean; children?: JSX.Element[] | JSX.Element; }; export type INumberInputFieldProps = IInputProps & {}; export type INumberInputSteppersProps = IStackProps & { children: JSX.Element[] | JSX.Element; }; export type INumberInputStepperProps = IBoxProps & { isDisabled?: boolean; _disabled?: any; _active?: any; }; export type INumberInputContext = INumberInputProps & { numberInputValue?: number; value?: number; handleChange?: (value: number) => void; handleChangeWithoutCheck?: (value: number) => void; numberInputStepper?: any; setNumberInputStepper?: any; isControlled?: boolean; };