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