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