import type { Components, JSX } from "../types/components";

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