import type { ReactNode } from 'react'; import type { CommonProps } from '../types.js'; export interface TableHeaderProps extends CommonProps { /** The header rows that belong to this table header. */ children: ReactNode; } /** * Renders a header section within a table. * * See [table usage guidelines](https://ui.cimpress.io/components/table/) and [table building guide](https://ui.cimpress.io/dev-guides/tables/). */ declare const _TableHeader: (props: TableHeaderProps & import("react").RefAttributes) => import("react").JSX.Element | null; export { _TableHeader as TableHeader }; //# sourceMappingURL=table-header.d.ts.map