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