import type { TrendingItemsProps as TrendingItemsUiComponentProps } from 'instantsearch-ui-components'; import type { BaseHit } from 'instantsearch.js'; import type { UseTrendingItemsProps } from 'react-instantsearch-core'; type UiProps = Pick, 'items' | 'itemComponent' | 'headerComponent' | 'emptyComponent' | 'layout' | 'status' | 'sendEvent'>; export type TrendingItemsProps = Omit, keyof UiProps> & UseTrendingItemsProps & { itemComponent?: TrendingItemsUiComponentProps['itemComponent']; headerComponent?: TrendingItemsUiComponentProps['headerComponent']; emptyComponent?: TrendingItemsUiComponentProps['emptyComponent']; layoutComponent?: TrendingItemsUiComponentProps['layout']; }; export declare function TrendingItems({ facetName, facetValue, limit, threshold, fallbackParameters, queryParameters, escapeHTML, transformItems, itemComponent, headerComponent, emptyComponent, layoutComponent, ...props }: TrendingItemsProps): JSX.Element; export {};