import React from "react"; import { type VibeComponentProps } from "../../../types"; import { type TableHeaderCellProps } from "../TableHeaderCell/TableHeaderCell"; export interface TableHeaderProps extends VibeComponentProps { /** * The child elements inside the table header, typically `` components. */ children?: React.ReactElement | React.ReactElement[]; } declare const TableHeader: React.ForwardRefExoticComponent>; export default TableHeader;