import React from "react"; import { SortDirection } from "../table-typings"; export declare type TableHeaderCellProps = JSX.IntrinsicElements["th"] & { accessor?: keyof T; disableSort?: boolean; sortDirection?: SortDirection; }; declare const TableHeaderCell: React.FC; export { TableHeaderCell };