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