import React from 'react'; import { IAttachment } from '../../../types'; export interface IUploadThumbnailProps { className?: string; attachment: IAttachment; previewUrl?: string; currentFileId?: string; isSingleFileDownloading?: boolean; } export declare const UploadThumbnail: React.FC;