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