import type { IImageOptions } from "docx";
import { IDefaultImagePluginOptions } from ".";
import { SVG } from "@m2d/core";
/**
 * Converts SVG into fallback raster image (PNG/JPG/etc.) for DOCX insertion.
 */
export declare const handleSvg: (svgNode: SVG, options: IDefaultImagePluginOptions) => Promise<IImageOptions>;
