import React from 'react'; import { Props as TableCellProps } from './TableCell'; declare type ButtonProps = { sorted?: 'none' | 'asc' | 'desc'; }; declare type Props = { onClick?: (e: React.MouseEvent) => void; title: string; } & ButtonProps & TableCellProps; declare const TableHeaderCell: React.FC; export default TableHeaderCell; //# sourceMappingURL=TableHeaderCell.d.ts.map