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