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; export default MessageFileList;