import { ReactNode, ReactElement, ForwardRefExoticComponent } from 'react'; import { TEXT_VARIANT } from '../Theme'; export declare enum ALIGN { LEFT = "left", RIGHT = "right", CENTER = "center" } export declare enum VALIGN { TOP = "top", BOTTOM = "bottom", CENTER = "center" } export interface TableCellProps { alignment?: ALIGN; verticalAlignment?: VALIGN; backgroundColor?: string; variant?: TEXT_VARIANT; children: ReactNode; } declare const TableCell: ForwardRefExoticComponent; declare type TableCell = ReactElement; export default TableCell;