import React from 'react';
import AttachmentModel from '../../../models/AttachmentModel';
import { IdType } from '../../../types';
type Props = {
    item: AttachmentModel;
    galleryId: string;
    handleDelete: (id: IdType, url: string) => void;
};
declare const PreviewItem: React.FC<Props>;
export default PreviewItem;
