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