/// import type { TableCellProps as MuiTableCellProps } from "@mui/material"; import type { TableProps } from "../types"; interface TableCellProps extends MuiTableCellProps, Pick { action?: boolean; border?: boolean; } declare const TableCell: { ({ action, border, responsive, ...props }: TableCellProps): JSX.Element; displayName: string; }; export default TableCell; //# sourceMappingURL=TableCell.d.ts.map