import { HeaderCategory, ModeType } from '../constants'; export interface Props extends Omit, 'style'> { /** Header category for styling. Default: normal */ category?: HeaderCategory; /** Adds custom classes to the element. */ className?: string; /** Sets the content of the thead. Add table rows */ children: React.ReactNode; /** For display with less space. Discouraged to use together with interactive elements. */ mode?: ModeType; } export declare const TableHead: React.FC; export default TableHead;