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