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