import React, { RefAttributes } from 'react';
import { TableCellProps } from './TableCell.types';
/**
 * TableCells are components used to display data inside a table
 */
declare const TableCell: React.ForwardRefExoticComponent<RefAttributes<HTMLTableCellElement> & TableCellProps>;
export default TableCell;
