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