/** * Mermaid 图表下载工具 * SVG → Canvas → PNG */ export interface DownloadOptions { /** 文件名(不含扩展名) */ filename?: string; /** 背景色,默认透明 */ backgroundColor?: string; /** 缩放比例,默认 2(提高清晰度) */ scale?: number; /** 内边距 */ padding?: number; } /** * 将 SVG 字符串转换为 PNG Blob */ export declare function svgToPngBlob(svgString: string, options?: DownloadOptions): Promise; /** * 下载 PNG 图片 */ export declare function downloadAsPng(svgString: string, options?: DownloadOptions): Promise; /** * 下载 SVG 文件 */ export declare function downloadAsSvg(svgString: string, options?: DownloadOptions): void; //# sourceMappingURL=download.d.ts.map