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