import { ITableContext } from 'context'; import { DetailedHTMLProps, HTMLAttributes } from 'react'; export interface TableCellProps extends Omit, HTMLLIElement>, 'ref'>, Partial> { size?: 's' | 'm' | 'l' | 'none'; align?: 'center' | 'left' | 'right'; type?: 'header' | 'body'; padding?: 'default' | 'none'; textClassName?: string; } //# sourceMappingURL=TableCell.props.d.ts.map