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