import React from 'react'; import type { ColumnShape } from './types'; export interface TableHeaderCellProps { className?: string; column?: ColumnShape; columnIndex?: number; } /** * HeaderCell component for BaseTable */ declare const TableHeaderCell: React.FC; export default TableHeaderCell;