import * as React from "react"; interface DataTableSortingMenuProps { /** * The tooltip to show when hovering over the sorting menu. */ tooltip?: string; } /** * This component adds a sorting menu to the data table, allowing users * to sort the table's data. */ declare const DataTableSortingMenu: { (props: DataTableSortingMenuProps): React.JSX.Element; displayName: string; }; export { DataTableSortingMenu }; export type { DataTableSortingMenuProps }; //# sourceMappingURL=data-table-sorting-menu.d.ts.map