import { type ComponentPropsWithRef } from "react"; import type { ThemingProps } from "../../types"; export interface TableCellTheme { base: string; } export interface TableCellProps extends ComponentPropsWithRef<"td">, ThemingProps { } export declare const TableCell: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;