import { Directive } from 'vue';
import { useScrollspy } from '../../composables/useScrollspy';
export interface ElementWithScrollspy extends HTMLElement {
    $__scrollspy?: Record<number, ReturnType<typeof useScrollspy>>;
}
export declare const vBScrollspy: Directive<ElementWithScrollspy>;
