import React, { FC } from 'react'; import { SortType, ProductSortClassessType, HandleSortParamType } from './types'; export declare type ProductSortPropsType = { type?: 'list' | 'dropdown'; label?: string; loadingComponent?: any; errorComponent?: any; handleSort?: ({ fieldName, isAscending, key }: HandleSortParamType) => void; saveSort?: (selectedSort?: SortType) => void; classes?: ProductSortClassessType; setSort?: React.Dispatch>; withApply?: boolean; }; declare const ProductSort: FC; export default ProductSort;