import type { Ref, SlotsType } from 'vue'; import type { AnchorLinkSlots } from './public-types'; import { type ExtractPublicPropTypes } from '../../_utils'; export interface AnchorInjection { activeHref: Ref; mergedClsPrefix: Ref; updateBarPosition: (el: HTMLElement) => void; setActiveHref: (href: string, transition?: boolean) => void; collectedLinkHrefs: string[]; titleEls: HTMLElement[]; } export declare const anchorInjectionKey: import("vue").InjectionKey; export declare const anchorLinkProps: { readonly title: StringConstructor; readonly href: StringConstructor; }; export type AnchorLinkProps = ExtractPublicPropTypes; declare const _default: import("vue").DefineComponent, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly> & Readonly<{}>, {}, SlotsType, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>; export default _default;