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