import { ModeType, SortDirection } from '../constants'; export interface Props extends Omit, 'style'> { /** Sets if column for head cell should be sortable*/ sortable?: boolean; /** Sort direction */ sortDir?: SortDirection; /** Function that is called when clicked */ onClick?: () => void; /** Adds custom classes to the element. */ className?: string; /** Sets the content of the td element. */ children?: React.ReactNode; /** For display with less space. Discouraged to use together with interactive elements. */ mode?: ModeType; } export declare const TableHeadCell: React.FC; export default TableHeadCell;