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