import { default as React } from 'react'; import { DropzoneOptions, FileWithPath as DropzoneFileWithPath, FileError as DropzoneFileError, ErrorCode as DropzoneErrorCode } from 'react-dropzone'; export type FileWithPath = DropzoneFileWithPath; export type FileError = DropzoneFileError; export type ErrorCode = DropzoneErrorCode; export interface FileRejection { file: FileWithPath; errors: readonly FileError[]; } export interface InputDropzoneProps extends DropzoneOptions { value?: FileWithPath[]; rejections?: FileRejection[]; onRemoveFile?: (file: FileWithPath) => void; onRemoveRejection?: (file: FileWithPath) => void; text?: string; linkText?: string; removeItemAriaLabel?: string; rootAriaLabel?: string; dropzoneClassName?: string; dropzoneItemClassName?: string; name?: string; } declare function InputDropzone(props: InputDropzoneProps): import("react/jsx-runtime").JSX.Element; declare const _default: React.MemoExoticComponent; export default _default;