@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
10 lines (9 loc) • 309 B
TypeScript
import React from 'react';
import { IdType } from '../../../types';
import AttachmentModel from '../../../models/AttachmentModel';
type Props = {
items: AttachmentModel[];
onDeleteItem?: (id: IdType) => void;
};
declare const MessageFileList: React.FC<Props>;
export default MessageFileList;