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