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