import React from 'react'; import PropTypes from 'prop-types'; export interface AddSelectSortProps { setSortAttribute?: (attribute: any) => void; setSortDirection?: (direction: any) => void; sortBy?: Array; sortByLabel?: string; } export declare const AddSelectSort: { ({ setSortAttribute, setSortDirection, sortBy, sortByLabel, }: AddSelectSortProps): React.JSX.Element; propTypes: { setSortAttribute: PropTypes.Requireable<(...args: any[]) => any>; setSortDirection: PropTypes.Requireable<(...args: any[]) => any>; sortBy: PropTypes.Requireable; sortByLabel: PropTypes.Requireable; }; displayName: string; }; //# sourceMappingURL=AddSelectSort.d.ts.map