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