import { FC } from 'react'; import { ITableHeaderProps, ITableSortProps } from './Table'; interface IHeaderCell { theme?: any; header: ITableHeaderProps; sortable: boolean; handleSort: (targetValue: string, order: string) => void; sort: ITableSortProps; } export declare const HeaderCell: FC; export {};