/// export interface IElevatorContextProps { activeLink: string; offsetTop: number; onLinkClick: (link: string) => void; getContainer?: () => HTMLElement; onAnchorEnter: (link: string) => void; onAnchorLeave?: (link: string) => void; registerAnchor: (link: string, element: HTMLElement) => void; unRegisterAnchor: (link: string) => void; } export declare const ElevatorContext: import("react").Context;