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