import React, { ReactNode } from 'react'; export type TableHeadProps = React.TableHTMLAttributes & { children?: ReactNode[]; noCell?: boolean; }; declare const TableHead: React.ForwardRefExoticComponent & { children?: React.ReactNode[] | undefined; noCell?: boolean | undefined; } & React.RefAttributes>; export default TableHead;