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