import { BaseInputProps } from '../../types/input'; import { ChangeEvent } from 'react'; export interface InputRangeProps extends Omit { /** If true, shows the minimum and maximum value next to the slider */ feDisplayMinMax?: boolean; /** Sets the minimum possible value of the input */ max: number | string; /** Sets the maximum possible value of the input */ min: number | string; /** If provided, allows you to react to min + max value updates */ onChange?: (event: ChangeEvent, value: number) => void; } declare const InputRange: import("react").ForwardRefExoticComponent>; export default InputRange;