import { type SkipLinkData } from './types'; /** * Internal-only hook for registering skip links. * * `useSkipLink` is the public API wrapper of this. * * This private version exists for us to support `onBeforeNavigate` for the side nav use case, * where we might need to expand it before moving focus, without having to support `onBeforeNavigate` publicly. */ export declare const useSkipLinkInternal: ({ id, label, listIndex, onBeforeNavigate, isHidden, }: SkipLinkData) => void;