import React from 'react'; /** * Image attachment component props */ export interface ImageAttachmentProps { file: File; onRemove: () => void; uploadProgress?: number; error?: string; } declare const ImageAttachment: ({ file, onRemove, uploadProgress, error }: ImageAttachmentProps) => React.JSX.Element; export default ImageAttachment; //# sourceMappingURL=ImageAttachment.d.ts.map