declare function _exports({ imageInputFile, maxWidth, imagePreviewNode, }: {
    imageInputFile: {
        name: string;
    };
    maxWidth?: number;
    imagePreviewNode?: HTMLImageElement;
}): Promise<any>;
export = _exports;