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