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