import Path from '../graphic/Path'; import ZRImage from '../graphic/Image'; import TSpan from '../graphic/TSpan'; export interface SVGProxy { brush(el: T): void; } declare const svgPath: SVGProxy; export { svgPath as path }; declare const svgImage: SVGProxy; export { svgImage as image }; declare const svgText: SVGProxy; export { svgText as text };