import { AnchorSemanticClassNames, AnchorSemanticStyles, AntAnchor } from "./Anchor.js"; import { Ref } from "vue"; //#region src/anchor/context.d.ts type AnchorContextType = Pick & { activeLink: Ref; direction: Ref; classes: Ref; styles: Ref; }; declare function useAnchorProvider(ctx: AnchorContextType): void; declare function useAnchorContext(): AnchorContextType | undefined; //#endregion export { AnchorContextType, useAnchorContext, useAnchorProvider };