IStorageDownloader
type IStorageDownloader = {  download: (    url: string,    gatewayUrls?: GatewayUrls,    options?: SingleDownloadOptions,  ) => Promise<Response>;};
Download arbitrary data from any URL scheme
function download(  url: string,): Promise<Response>;