import * as React from 'react'; export interface AnchorContextType { addLink: (href: string) => void; removeLink: (href: string) => void; prefixCls: string; handleClick: (href: string) => void; currentLink: string | null; } declare const Context: React.Context; export default Context;