import { JSX } from 'react';
import { LegacyInputRef } from '../../../types/legacyInputRef';
export type RangeInputProps = {
    id: string;
    name: string;
    min?: number;
    max?: number;
    textPreposition?: string;
    textUnit?: string;
    inputRef?: LegacyInputRef;
    wrapperClassName?: string;
} & JSX.IntrinsicElements['input'];
export declare const RangeInput: ({ className, wrapperClassName, inputRef, textPreposition, textUnit, ...inputProps }: RangeInputProps) => JSX.Element;
export default RangeInput;
