import { TableHeadProps } from './table-head.types'; /** * The component renders a `` element and it should contain `TableRow` components. * * ### Usage * * ```tsx * import { TableHead, TableRow, TableCell } from '@bloomreach/react-banana-ui'; * * export default function MyCustomHead() { * return ( * * * This cell will be rendered as `` * * * ); * } * ``` */ declare const TableHead: import('react').ForwardRefExoticComponent>; export default TableHead;