/** * Downloads a file from a Blob object by creating a temporary object URL and clicking a link with a download attribute. * @param dataStream - The data to download as a Blob object. * @param fileName - The name to use for the downloaded file. Defaults to 'unknown'. * @example * downloadByBlob('hello,world', 'export') * console.log('triggered') * @since 1.0.0 */ declare const downloadByBlob: (dataStream: BlobPart, fileName?: string) => void; export default downloadByBlob;