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