import type { HitsProps as HitsUiComponentProps } from '../ui/Hits'; import type { Hit, BaseHit } from 'instantsearch.js'; import type { UseHitsProps } from 'react-instantsearch-hooks'; type UiProps = Pick>, 'hits' | 'sendEvent'>; export type HitsProps = Omit>, keyof UiProps> & UseHitsProps; export declare function Hits({ escapeHTML, transformItems, ...props }: HitsProps): JSX.Element; export {};