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