import { ReactNode } from 'react'; declare type SortByProps = { name: string; label: ReactNode; onChange: (field: string, value: string, otherFilter?: boolean) => void; value: string; filters: { label: string; value: string; }[]; otherFilters?: { label: string; value: string; }[]; otherValue?: string; }; declare const SortBy: ({ name, label, onChange, filters, value, otherFilters, otherValue, }: SortByProps) => JSX.Element; export default SortBy;