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