@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
12 lines (11 loc) • 414 B
TypeScript
import * as React from 'react';
import AttachmentModel from '../../../models/AttachmentModel';
import { ThreadModel } from '../../../models/ThreadModel';
import 'photoswipe/style.css';
type Props = {
thread?: ThreadModel;
attachments: AttachmentModel[];
setAttachments: (a: AttachmentModel[]) => void;
};
declare const AttachmentsPreview: React.FC<Props>;
export default AttachmentsPreview;