import { TableCellProps } from './table-cell.types';
/**
* The component renders a `
` element when the parent context is a header
* or otherwise a ` | ` element.
*
* ### Usage
*
* ```tsx
* import { Table, TableHeader, TableBody, TableFoot, TableCell } from '@bloomreach/react-banana-ui';
*
* export default function MyCustomTable() {
* return (
*
*
*
* This cell will be rendered as ``
*
*
*
*
* This cell will be rendered as ``
*
*
*
*
* This cell will be rendered as `| `
*
*
* | | |
* );
* }
* ```
*/
declare const TableCell: import('react').ForwardRefExoticComponent>;
export default TableCell;
|