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