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