@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
15 lines (14 loc) • 418 B
TypeScript
import React from 'react';
import { IdType } from '../../../types';
import AttachmentModel from '../../../models/AttachmentModel';
type Props = {
item: AttachmentModel;
galleryId: string;
columns: number;
rows: number;
itemsCount: number;
index: number;
onDelete?: (id: IdType) => void;
};
declare const MessageGalleryItem: React.FC<Props>;
export default MessageGalleryItem;