import type { Components, JSX } from "../types/components"; interface SpwTag extends Components.SpwTag, HTMLElement {} export const SpwTag: { prototype: SpwTag; new (): SpwTag; }; /** * Used to define this component and all nested components recursively. */ export const defineCustomElement: () => void;