import React from 'react'; import { TableCellProps } from '../../types'; /** * TableCell component. * * Renders either an `` or a `` HTML element, depending on the isHeading prop. * * Accepts text as children, and needs to have a `` as a parent. * */ declare const TableCell: React.ForwardRefExoticComponent>; export default TableCell;