import { InputHTMLAttributes } from 'react'; import { TRawInput } from '../RawInput'; export type TNumberInput = { autoWidth?: boolean; step?: number; decimalPlaces?: number; } & TRawInput; export type TNumberInputNativeAttrs = Omit, 'type' | 'step'>; export type TNumberInputWithNativeAttrs = TNumberInput & TNumberInputNativeAttrs;