import React from 'react';
import IconProps from '../types/icon-type';
declare type SortingIconProps = {
    ascendingColor?: string;
    descendingColor?: string;
} & IconProps;
declare const SortingIcon: React.FC<SortingIconProps>;
export default SortingIcon;
