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