import type { MaybePromise } from './typed.js' /** * 保存文件 * * @param content - 文件内容 * @param name - 文件名 */ export declare function saveAs(content: MaybePromise, name?: string): Promise /** * 下载文件 * * @param content - 文件内容 * @param name - 文件名 */ export declare function downloadAs(content: MaybePromise, name?: string): Promise