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