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