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