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