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