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