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