import * as React from 'react'; import { ISortChangeEvent } from './RemoteTable.types'; interface IHeaderCellProps { columnKey: string; value: string | object; sortDirection?: 'asc' | 'desc'; disableSort: boolean; onSortChange(e: ISortChangeEvent): any; headerStyle?: React.CSSProperties; } declare const HeaderCell: React.FC; export default HeaderCell;