import type * as csstype from 'csstype'; declare global { namespace LitJSX { type CSSProperties = csstype.Properties & Record; /** * Interface for native HTML elements */ type NativeHTMLElements = ElementMapToJSXElements; /** * Interface for native SVG elements */ type NativeSVGElements = ElementMapToJSXElements>; /** * Interface for native MathML elements */ type NativeMathMLElements = ElementMapToJSXElements>; /** * Interface for semantic tags that start with "s-". */ interface SemanticTags { /** Semantic tags that start with "s-". */ [key: `s-${ string }`]: JSXElementProps; } } }