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