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