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