import { ButtonSortProps } from '../ButtonSort';
export interface SortResultsProps {
    /** The label text of the sort buttons */
    label?: string;
    /** An array of sort button objects */
    sortButtons: ButtonSortProps[];
}
declare const SortResults: (sortResults: SortResultsProps) => any;
export default SortResults;
