import type { ReactNode } from 'react'; import type { CommonInputProps } from '../types'; export interface NumberInputProps extends CommonInputProps { autoComplete?: HTMLInputElement['autocomplete']; defaultValue?: string; icon?: ReactNode; onBlur?: () => void; onChange?: (value: string) => void; onFocus?: () => void; placeholder?: string; value?: string; }