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