import * as React from 'react'; import { StandardProps } from '..'; import { ButtonBaseProps } from '../ButtonBase'; import { SvgIconProps } from '../SvgIcon'; export interface TableSortLabelProps extends StandardProps { active?: boolean; direction?: 'asc' | 'desc'; hideSortIcon?: boolean; IconComponent?: React.ComponentType; } export type TableSortLabelClassKey = | 'root' | 'active' | 'icon' | 'iconDirectionDesc' | 'iconDirectionAsc'; declare const TableSortLabel: React.ComponentType; export default TableSortLabel;