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