export interface Props { // eslint-disable-next-line @typescript-eslint/no-explicit-any theme: any; limitValues: { min: number; max: number; }; label: string; width: string; value: number; height: string; required: boolean; hasErrors: boolean; setValue: Function; placeholder: string; borderStyle: string; allowNull: boolean; allowDecimals: boolean; isDisabled: boolean; disableUpDownBehaviour: boolean; isHighlighted: boolean; isButtonHidden: boolean; }