Would it be possible to improve the return type of `Node.cloneNode`? For example: ```js let svg: SVGElement; const clone = svg.cloneNode(true); ``` I would expect the type of `clone` to be `SVGElement`, but it is in fact `Node`.