import React from 'react'; import type { RefinementListProps as RefinementListUiComponentProps } from '../ui/RefinementList'; import type { SearchBoxTranslations } from '../ui/SearchBox'; import type { RefinementListWidgetParams } from 'instantsearch.js/es/widgets/refinement-list/refinement-list'; import type { UseRefinementListProps } from 'react-instantsearch-core'; type UiProps = Pick; export type RefinementListProps = Omit & UseRefinementListProps & Pick & { translations?: Partial; }; export declare function RefinementList({ searchable, searchablePlaceholder, attribute, operator, limit, showMore, showMoreLimit, sortBy, escapeFacetValues, transformItems, translations, ...props }: RefinementListProps): React.JSX.Element; export {};