import React from 'react';
import { IdType } from '../../../types';
import AttachmentModel from '../../../models/AttachmentModel';
type Props = {
    item: AttachmentModel;
    onDelete?: (id: IdType) => void;
};
declare const MessageFileListItem: React.FC<Props>;
export default MessageFileListItem;
