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