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