/// declare type Props = { onRemove?: (props: any) => void; onReady?: (props: any) => void; onDone: (props: any) => void; initialFile?: string; context: string; fileId?: string; fileName?: string; }; declare const Dropzone: ({ onRemove, initialFile, onDone, context, fileId, fileName }: Props) => JSX.Element; export default Dropzone;