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