export default paper; /** * Create new paper holding a new SVG element * @param {(HTMLElement|ShadowRoot|string)} container Container element or selector string * @param {(number|string)} width SVG width * @param {(number|string)} height SVG height * @param {Document} [doc=document] HTML document. Defaults to current document * @return {Object} The paper */ declare function paper(container: (HTMLElement | ShadowRoot | string), width: (number | string), height: (number | string), doc?: Document): any;