import { default as React, RefObject } from 'react'; export interface AnchorContextProps { currentId: string; onLinkClick: (e: React.MouseEvent, href: string) => void; linkMap: RefObject>; } export declare const AnchorContext: React.Context;