/**
* @module helper.image
*//**
* return a Promise that will resolve a new dataURL or reject an empty string.
* @async
*/exportdeclarefunctionresizeImageDataUrl(dataURL: string, { width, height }: {
width: number;
height: number;
}): Promise<string>;