1 | import type { HitsPerPageProps as HitsPerPageUiComponentProps } from '../ui/HitsPerPage';
|
2 | import type { UseHitsPerPageProps } from 'react-instantsearch-core';
|
3 | type UiProps = Pick<HitsPerPageUiComponentProps, 'items' | 'onChange' | 'currentValue'>;
|
4 | export type HitsPerPageProps = Omit<HitsPerPageUiComponentProps, keyof UiProps> & UseHitsPerPageProps;
|
5 | export declare function HitsPerPage({ items: userItems, transformItems, ...props }: HitsPerPageProps): JSX.Element;
|
6 | export {};
|