import React from "react"; import { TableCellProps as MuiTableCellProps, TypographyProps } from "@mui/material"; export interface TableCellProps extends React.PropsWithChildren { typographyProps?: TypographyProps; } export declare const TableCell: React.FC;