@carbon/ibm-products
Version:
Carbon for IBM Products
18 lines (17 loc) • 525 B
TypeScript
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;
};