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