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