import React from 'react'; import type { RangeInputProps as RangeInputUiProps } from '../ui/RangeInput'; import type { UseRangeProps } from 'react-instantsearch-core'; type UiProps = Pick; export type RangeInputProps = Omit & UseRangeProps & { translations?: Partial; }; export declare function RangeInput({ attribute, min, max, precision, translations, ...props }: RangeInputProps): React.JSX.Element; export {};