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