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