import { InputWrapperBaseProps } from '../../internals/InputWrapper'; export interface InputSpinnerProps extends InputWrapperBaseProps, Omit, "type" | "value" | "onChange"> { min?: number; max?: number; defaultValue?: number; onChange: (value: number) => void; /** * When true the input will not be editable by keyboard, but quantity can be changed only via buttons. * Plus keyboard will not be displayed on mobile devices and the input will not be tabbable/focusable, but only the buttons will be. */ disableKeyboard?: boolean; /** * Makes the entire component disabled, quantity cannot be changed in any way */ disabled?: boolean; } export declare const InputSpinner: import('react').ForwardRefExoticComponent>;