/** * Stream a `Blob` (an export- or content-route response) to the user as a file * download via a transient object URL. The object URL is revoked on the next tick — * revoking it synchronously can cancel the download before the browser commits it. */ export declare function downloadBlob(blob: Blob, filename: string): void; //# sourceMappingURL=download.d.ts.map