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