import type { InjectionKey, Ref } from 'vue'; export declare type AnchorContext = { activeLink: Ref; addLink: (href: string, element: any) => void; removeLink: (href: string) => void; handleClick: (e: Event, info: { title: any; href: string; }) => void; }; export declare const AnchorContextKey: InjectionKey;