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