import { TableSortLabelProps as MUITableSortLabelProps } from '@material-ui/core'; export type TableSortLabelProps = { /** * Shows an arrow indicating sort direction */ active?: boolean; /** * Click handler */ onClick?: MUITableSortLabelProps['onClick']; } & Omit; declare const TableSortLabel: (props: TableSortLabelProps) => JSX.Element; export default TableSortLabel; //# sourceMappingURL=TableSortLabel.d.ts.map