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