import * as React from 'react'; import { FormTypes } from '@oneblink/types'; interface Props { element: FormTypes.FilesElement; /** If set to `undefined`, the remove button will be hidden */ onRemove: (() => void) | undefined; onDownload?: () => void; onRetry?: () => void; attachmentUrl: string | null | undefined; onAnnotate?: () => void; onCrop?: () => void; } declare const _default: React.NamedExoticComponent; export default _default;