/** * Download a file to the user's computer. * @param {string} filename - Name of the file to download * @param {string | Blob} stringOrBlob - Contents of the file to download */ export function download(filename: string, stringOrBlob: string | Blob): void; export default download;