/**
* innerHTML property for SVGElement
* Copyright(c) 2010, Jeff Schiller
*
* Licensed under the Apache License, Version 2
*
* Works in a SVG document in Chrome 6+, Safari 5+, Firefox 4+ and IE9+.
* Works in a HTML5 document in Chrome 7+, Firefox 4+ and IE9+.
* Does not work in Opera since it doesn't support the SVGElement interface yet.
*
* I haven't decided on the best name for this property - thus the duplication.
*/
/**
* Extracts the content of an svg node as text or replaces it with new svg content.
* @param svgNode The svg node to extract content from.
* @param newContent Optional new content to insert. If provided will replace all content of the svg node with this content. If used the function returns nothing.
*/
export declare const innerSVG: (svgNode: SVGElement) => string;
export default innerSVG;