1 | import type { RangeInputProps as RangeInputUiProps } from '../ui/RangeInput';
|
2 | import type { UseRangeProps } from 'react-instantsearch-core';
|
3 | type UiProps = Pick<RangeInputUiProps, 'disabled' | 'onSubmit' | 'range' | 'start' | 'step' | 'translations'>;
|
4 | export type RangeInputProps = Omit<RangeInputUiProps, keyof UiProps> & UseRangeProps & {
|
5 | translations?: Partial<UiProps['translations']>;
|
6 | };
|
7 | export declare function RangeInput({ attribute, min, max, precision, translations, ...props }: RangeInputProps): JSX.Element;
|
8 | export {};
|