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