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