import type { HitsPerPageProps as HitsPerPageUiComponentProps } from '../ui/HitsPerPage'; import type { UseHitsPerPageProps } from 'react-instantsearch-core'; type UiProps = Pick; export type HitsPerPageProps = Omit & UseHitsPerPageProps; export declare function HitsPerPage({ items: userItems, transformItems, ...props }: HitsPerPageProps): JSX.Element; export {};