/** * Converts a base64 SVG into a base64 PNG. * * @param {string|HTMLImageElement} src - an URL to a SVG or a *loaded* image * with such an URL. This allows the call to potentially be a bit more * efficient in that second case. * @returns {Promise} a base64 PNG (as result of a Promise) */ export function svgToPNG(src: string | HTMLImageElement): Promise; /** * Converts a base64 WEBP into a base64 PNG. * * @param {string|HTMLImageElement} src - an URL to a WEBP or a *loaded* image * with such an URL. This allows the call to potentially be a bit more * efficient in that second case. * @returns {Promise} a base64 PNG (as result of a Promise) */ export function webpToPNG(src: string | HTMLImageElement): Promise; /** * Bootstraps an "empty" Google Maps iframe. * * @returns {HTMLIframeElement} */ export function generateGMapIframe(): HTMLIframeElement; /** * Generates a Google Maps URL based on the given parameter. * * @param {DOMStringMap} dataset * @returns {string} a Google Maps URL */ export function generateGMapLink(dataset: DOMStringMap): string; /** * Deep clones children or parses a string into elements, with or without *