1 | import type { SortByProps as SortByUiComponentProps } from '../ui/SortBy';
|
2 | import type { UseSortByProps } from 'react-instantsearch-core';
|
3 | type UiProps = Pick<SortByUiComponentProps, 'items' | 'value' | 'onChange'>;
|
4 | export type SortByProps = Omit<SortByUiComponentProps, keyof UiProps> & UseSortByProps;
|
5 | export declare function SortBy({ items, transformItems, ...props }: SortByProps): JSX.Element;
|
6 | export {};
|