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