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