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