@carbon/ibm-products
Version:
Carbon for IBM Products
19 lines • 741 B
TypeScript
import React from 'react';
import PropTypes from 'prop-types';
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: PropTypes.Requireable<(...args: any[]) => any>;
setSortDirection: PropTypes.Requireable<(...args: any[]) => any>;
sortBy: PropTypes.Requireable<any[]>;
sortByLabel: PropTypes.Requireable<string>;
};
displayName: string;
};
//# sourceMappingURL=AddSelectSort.d.ts.map