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