import type Frame from '../models/Base/Frame'; import Svg from '../models/Layer/Svg'; /** * 将 SVG node 节点转为 SVG Sketch对象 * @param {SVGElement} node svg节点 */ export declare const parseToSvg: (node: SVGElement) => Promise; /** * 将 URL 转换为 Svg 对象 * @param url * @param frame */ export declare const parseURLToSvg: (url: string, frame: Frame) => Promise;