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