import { type ComponentPropsWithRef } from "react"; import type { ThemingProps } from "../../types"; export interface TableHeadCellTheme { base: string; } export interface TableHeadCellProps extends ComponentPropsWithRef<"th">, ThemingProps { } export declare const TableHeadCell: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;