import type { Styled } from '../../hooks/useStyled'; import { type CLASSES } from '../vars'; interface TableCellProps extends React.TdHTMLAttributes { namespace: string; styled: Styled; tag: 'th' | 'td'; width: number | string | undefined; align: 'left' | 'right' | 'center'; fixed: { top?: number | string; right?: number | string; bottom?: number | string; left?: number | string; } | undefined; ellipsis: boolean; } export declare function TableCell(props: TableCellProps): React.ReactElement | null; export {};