/** * @jsxRuntime classic * @jsx jsx */ import type { FC, ReactNode } from 'react'; /** * __THead__ * * A primitive table head container. Applies the HTML native element with minimal styling. * * @primitive */ export declare const THead: FC<{ children?: ReactNode; }>;