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