import { ReactNode } from 'react';
import { DropzoneProps as ReactDropzoneProps } from 'react-dropzone';
export type ImagePickerProps = {
    defaultLabel?: ReactNode;
    dragLabel?: ReactNode;
    information?: string;
    onFileChange?: (file: File | null) => void;
    width?: string;
    height?: string;
    initialFile?: string | File;
} & ReactDropzoneProps;
declare const ImagePicker: React.FunctionComponent<ImagePickerProps>;
export default ImagePicker;
