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