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