import { TableCellProps } from '../TableCell/TableCell'; import * as React from 'react'; export interface TableHeaderCellProps extends TableCellProps { /** * If true, the element inside the header cell with `sorting` className will be positioned absolutely to the right. */ sorting?: boolean; } export declare const TableHeaderCell: React.FC;