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