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