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