import { ModeType, TextAlign } from '../constants'; export interface Props extends Omit, 'style'> { /** Label used for small viewport block */ dataLabel?: string; /** text align in cell */ textAlign?: TextAlign; /** nowrap for white space */ nowrap?: boolean; /** Adds custom classes to the element. */ className?: string; /** Sets the content of the table cell */ children?: React.ReactNode; /** For display with less space. Discouraged to use together with interactive elements. */ mode?: ModeType; /** For test purposes */ testId?: string; } export declare const TableCell: React.FC; export default TableCell;