import { PropsWithChildren } from 'react'; export declare type ImageDropzoneProps = { handleFiles?: (files: FileList | File[]) => void; /** Allow drag 'n' drop (or selection from the file dialog) of multiple files */ multiple?: boolean; /** Enable/disable the dropzone */ disabled?: boolean; /** * Set accepted file types. See https://github.com/okonet/attr-accept for more information. Keep in mind that mime type determination is not reliable across platforms. CSV files, for example, are reported as text/plain under macOS but as application/vnd.ms-excel under Windows. In some cases there might not be a mime type set at all. * * One of type: `string, string[]` */ accept?: string | string[]; maxNumberOfFiles?: number; }; export declare const ImageDropzone: ({ handleFiles, maxNumberOfFiles, children, accept, multiple, disabled, }: PropsWithChildren) => JSX.Element; //# sourceMappingURL=ImageDropzone.d.ts.map