import type * as React from 'react'; interface BaseTableHeadProps { /** * The table head contents, usually `TableRow`. */ children?: React.ReactNode; } type OmitProps = 'children'; export type TableHeadProps = Omit, OmitProps> & BaseTableHeadProps; export declare const TableHead: ({ children, ...tableHeadProps }: TableHeadProps) => import("react/jsx-runtime").JSX.Element; export default TableHead;