import React from 'react'; import cx from 'classnames'; import styles from './TableCell.module.scss'; export interface TableCellProps extends React.HTMLProps { /** Child of `Table.Cell` which should be any element. */ children: React.ReactNode; /** Dictate how many columns the cell will span. */ colSpan?: number; /** Alignment for content in table cell.. */ align?: 'start' | 'center' | 'end'; /** Change the font within the cell. 🚧 This will be removed when Text component gets released.🚧*/ font?: 'sans' | 'monospace'; /** Add a CSS class to adjust cell content.*/ cellWrapperClassName?: Parameters[0]; } export declare const TableCell: React.FC; export default TableCell; export { styles }; //# sourceMappingURL=TableCell.d.ts.map