import React from "react";
export interface ImageUploadProps {
    onChange?: any;
    value?: any;
    type?: string;
}
declare global {
    interface Window {
        publicPath: string;
    }
}
declare const ImageUpload: React.FC<ImageUploadProps>;
export default ImageUpload;
