import React from 'react'; export declare const DragDropFileUpload: { (props: any): React.JSX.Element; propTypes: { /** * Optional, title */ title: any; /** * Optional, event handler that accept a param (an array of files) when drop or select files. * can use other props to handle this event such as onDropAccepted, onDropRejected. * https://react-dropzone.js.org/#section-components */ handleUploadFile: any; /** * Optional, hide or show the select file button (default is false) */ hideSelectFileButton: any; /** * Optional, hide or show the file sneak preview (default is false) */ hideFilePreview: any; /** * Optional, minimum height */ minHeight: number; /** * Optional, maximum height */ maxHeight: number; /** * Optional, allow to add multiple files at a time (default is false) */ multiple: any; }; }; //# sourceMappingURL=DragDropFileUpload.d.ts.map