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