import React from 'react';
export interface AddSelectSortProps {
    setSortAttribute?: (attribute: any) => void;
    setSortDirection?: (direction: any) => void;
    sortBy?: Array<string>;
    sortByLabel?: string;
}
export declare const AddSelectSort: {
    ({ setSortAttribute, setSortDirection, sortBy, sortByLabel, }: AddSelectSortProps): React.JSX.Element;
    propTypes: {
        setSortAttribute: any;
        setSortDirection: any;
        sortBy: any;
        sortByLabel: any;
    };
    displayName: string;
};
