import React from "react"; import type { DropzoneOptions } from "react-dropzone"; export type EnhancedDropzoneProps = { id?: string; className?: string; label?: string; info?: string; error?: string; accept?: DropzoneOptions["accept"] | string[]; maxFiles?: number; maxSize?: number; minSize?: number; disabled?: boolean; value?: string[]; onChange?: (files: File[]) => void; onRemoveRemote?: (url: string) => void; resize?: boolean; testIdDropzone?: string; testIdInput?: string; testIdPrev?: string; testIdNext?: string; testIdPreviewPrefix?: string; testIdImagePrefix?: string; testIdRemovePrefix?: string; testIdCount?: string; testIdEmptyIcon?: string; testIdEmptyTitle?: string; testIdEmptySubtitle?: string; testIdEmptyNote?: string; testIdMessage?: string; }; export declare const EnhancedDropzone: React.FC;