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