import * as React from "react"; export interface AnchorContext { registerLink: (link: string) => void; unregisterLink: (link: string) => void; activeLink: string | null; scrollTo: (link: string) => void; onClick?: (e: React.MouseEvent, link: { title: React.ReactNode; href: string; }) => void; } export declare const AppContextProvider: React.Provider; export declare const AppContextConsumer: React.Consumer;