import { FC, HTMLAttributes } from 'react';
export type TableHeadProps = HTMLAttributes;
/** The TableHead component represents the `` section of a table, typically used to define column headers and labels that describe the content structure of the table rows */
export declare const TableHead: FC;