import React from 'react'; import type { DefaultProps } from '../../types'; import type { TableCellProps } from '@mui/material/TableCell'; export interface ITableCellProps extends DefaultProps, Omit { numeric?: boolean; sortable?: boolean; padding?: number | string; variant?: 'head' | 'body' | 'footer'; spacing?: 'normal' | 'checkbox' | 'none'; align?: 'inherit' | 'left' | 'center' | 'right' | 'justify'; } declare const TableCell: ({ style, margin, padding, children, spacing, sortable, ...otherProps }: ITableCellProps) => React.JSX.Element; export default TableCell;