/** * @jsxRuntime classic * @jsx jsx */ import { type ReactNode } from 'react'; import type { SkipLinkData } from '../../context/skip-links/types'; /** * A link that moves current tab position to a different element * * This component is rendered internally and is not exported publicly. */ export declare const SkipLink: ({ id, children, onBeforeNavigate, }: { id: string; children: ReactNode; onBeforeNavigate?: SkipLinkData['onBeforeNavigate']; }) => JSX.Element;