import { type FC } from 'react'; import { type BaseCellProps, type SortDirection } from './base-cell'; export type THProps = Omit; type InternalTHProps = THProps & { sortDirection?: SortDirection; }; /** * __Head cell__ * * A head cell. * * @primitive */ export declare const TH: FC; export {};