/** * Work out what element type based on element name * Most commonly 'svg' or 'html' */ declare function getNamespace(elementName: any): "svg" | "html"; export default getNamespace;