import { InputProps } from '../../../../ui/index.js';
type InputRangeProps = InputProps & {
sufix?: string;
};
export declare function InputRange({ name, min, max, sufix, ...props }: InputRangeProps): import("react/jsx-runtime").JSX.Element;
export {};