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