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