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