import type { ComponentProps, FC, PropsWithChildren } from "react"; import type { keepTableHeadCellTheme } from "./TableHeadCell"; import { DeepPartial } from "../../helpers/deep-partial"; export interface keepTableHeadTheme { base: string; cell: keepTableHeadCellTheme; } export interface TableHeadProps extends PropsWithChildren, ComponentProps<"thead"> { theme?: DeepPartial; } export declare const TableHead: FC;