/**
 * 通过 a 标签下载文件
 */
declare function downloadFile(data: string | Blob | MediaSource, options?: {
    fileName?: string;
}): void;

export { downloadFile };
