@plteam/chat-ui
Version:
CUI Kit is a free and open-source library for creating AI assistant chat interfaces, built with React, Material UI, and TypeScript
8 lines (7 loc) • 405 B
TypeScript
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;