import * as React from 'react';
import { TableCellProps } from '@mui/material/TableCell';
import { TypographyProps } from '@mui/material/Typography';
import { SlotFullPropItem } from '../../../types/SlotFullPropItem';
type Props = SlotFullPropItem<'textComponent', TypographyProps> & TableCellProps;
declare const MessageMarkdownTableCell: React.FC<Props>;
export default MessageMarkdownTableCell;
