import React from 'react'; import type { DropEvent } from 'react-dropzone'; import type { UploaderProps as UploaderCommonProps } from '../types'; export interface UploaderProps extends UploaderCommonProps { accept?: { [key: string]: string[]; }; disabled?: boolean; onDropAccepted?: (files: File[], e: DropEvent) => void; } export declare const Uploader: (props: React.PropsWithChildren) => React.JSX.Element;