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