/** * 下载图片 */ export declare const downloadImg: (url: string, _fileName?: string) => void; /** * 通用下载 */ export declare const commonDownload: (fileUrl: string, _fileName?: string) => void; /** * 下载文件 * @param fileUrl 下载的文件路径 * @param fileName 重命名下载文件 */ export declare const downloadFile: (fileUrl: string, fileName?: string) => void;