import { DropzoneProps as ReactDropzoneProps } from 'react-dropzone';
import { DropZoneSlotProps } from './types';
export type DropzoneProps = {
    defaultLabel?: string;
    dragLabel?: string;
    information?: string;
    width?: string;
    height?: string;
    slotProps?: DropZoneSlotProps;
} & ReactDropzoneProps;
declare const Dropzone: React.FunctionComponent<DropzoneProps>;
export default Dropzone;
