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