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