import { TableSortLabelProps } from './table-sort-label.types';
/**
* A button based label for placing inside `TableCell` for column sorting.
* It can be used to indicate the sorted column and the sorting direction.
*
* ### Usage
*
* ```tsx
* import { TableHead, TableRow, TableCell, TableSortLabel } from '@bloomreach/react-banana-ui';
*
* export default function MySortableTableHeader() {
* return (
*
*
* Name
* Email
*
*
* );
* }
* ```
*/
declare const TableSortLabel: import('react').ForwardRefExoticComponent>;
export default TableSortLabel;