import React from 'react'; import type { SortByProps as SortByUiComponentProps } from '../ui/SortBy'; import type { UseSortByProps } from 'react-instantsearch-core'; type UiProps = Pick; export type SortByProps = Omit & UseSortByProps; export declare function SortBy({ items, transformItems, ...props }: SortByProps): React.JSX.Element; export {};