import { FC } from 'react';
interface ISelectSortProps {
    sortItem: any;
    activeMenu: any;
    selectArray: Array<any>;
    onChangeSelect(item: any, columnName: string): void;
}
declare const SelectSort: FC<ISelectSortProps>;
export default SelectSort;
