import type { ComponentProps, FC, PropsWithChildren } from "react"; import { DeepPartial } from "../../helpers/deep-partial"; export interface keepTableCellTheme { base: string; } export interface TableCellProps extends PropsWithChildren, ComponentProps<"td"> { theme?: DeepPartial; } export declare const TableCell: FC;