/** * Asks the browser to download a given URL as a file. * * @param {String} url The url to download. * @param {String} name The name of the downloaded file. */ export default function downloadUrl(url: string, name: string): void;