import { default as React, HTMLAttributes } from 'react'; type TableCellVariant = 'data' | 'header'; export interface TableCellProps extends HTMLAttributes { /** * ID to find this component in testing tools (e.g.: cypress, testing library, and jest). */ testId?: string; /** * Specify if this component should be rendered as a header (``) or as a data cell (``). */ variant?: TableCellVariant; /** * Defines the cells that the header element (``) relates to. * @see scope https://developer.mozilla.org/en-US/docs/Web/HTML/Element/th#attr-scope */ scope?: 'col' | 'row' | 'rowgroup' | 'colgroup'; /** * Defines how this component should be aligned. */ align?: 'left' | 'center' | 'right'; } declare const TableCell: React.ForwardRefExoticComponent>; export default TableCell; //# sourceMappingURL=TableCell.d.ts.map