/** * Downloads a file from a URL by creating a temporary object URL and clicking a link with a download attribute. * @param Url - The URL of the file to download. * @param type - The MIME type of the file. Defaults to 'application/octet-stream'. * @example * downloadByUrl('https://example.com/my-file.xlsx', 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet') * * @since 1.0.0 */ declare const downloadByUrl: (Url: string, type?: string) => void; export default downloadByUrl;