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