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