import { FC, PropsWithChildren } from 'react'; import { SortBy } from './helpers/sortPads'; type Props = { title: string; active: boolean; direction?: 'asc' | 'desc'; sortBy: SortBy; onClick: (sortBy: SortBy) => void; }; declare const TableSortLabel: FC>; export default TableSortLabel; //# sourceMappingURL=TableSortLabel.d.ts.map