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