import { ReactNode, ReactElement, ForwardRefExoticComponent } from 'react'; import { ALIGN, VALIGN } from './TableCell'; export interface TableRowHeadingCellProps { alignment?: ALIGN; verticalAlignment?: VALIGN; backgroundColor?: string; children: ReactNode; colSpan?: string | number; rowSpan?: string | number; scope: 'row' | 'rowgroup' | 'auto'; } declare const TableRowHeadingCell: ForwardRefExoticComponent; declare type TableRowHeadingCell = ReactElement; export default TableRowHeadingCell;