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