export default base64ToCanvas; /** * Convert a base64 encoded image into a canvas object. * @param {string} base64 - Base64 string encoding the image. * @param {number} width - Custom width for the canvas object. * @param {number} height - Custom height for the canvas object. * @return {Promise} The converted canvas object */ declare function base64ToCanvas(base64: string, width: number, height: number): Promise;