import * as React from "react"; import type { MergeElementProps } from "../../typings"; interface TableHeaderBaseProps { /** The content of the component. */ children?: React.ReactNode; /** * Append to the classNames applied to the component so you can override or * extend the styles. */ className?: string; } export declare type TableHeaderProps = MergeElementProps<"thead", TableHeaderBaseProps>; declare type Component = { (props: TableHeaderProps): React.ReactElement | null; propTypes?: React.WeakValidationMap | undefined; displayName?: string | undefined; }; declare const TableHeader: Component; export default TableHeader;