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