import type { ComponentProps, FC, PropsWithChildren, ReactNode } from "react"; import { DeepPartial } from "../../helpers/deep-partial"; export interface keepTableHeadCellTheme { base: string; icon: { base: string; on: { left: string; right: string; }; off: string; }; } export interface TableHeadCellProps extends PropsWithChildren, ComponentProps<"th"> { theme?: DeepPartial; icon?: ReactNode; iconPosition?: "left" | "right"; } export declare const TableHeadCell: FC;