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