/**
* 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
*/exportfunctiondownload(filename: string, stringOrBlob: string | Blob): void;
exportdefault download;