import type { Components, JSX } from "../types/components";

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