import { DirectiveBinding } from 'vue';
/**
* 自动滚动指令
* 使用方式:
* const scrollTrigger = ref(0);
*
* ...
*
*
* 每次 triggerValue 变化时,会触发一次滚动并开始自动观察
* 传入 0 或 falsy 值时停止观察
*/
export declare const vAutoScroll: {
mounted(el: HTMLElement, binding: DirectiveBinding): void;
updated(el: HTMLElement, binding: DirectiveBinding): void;
unmounted(el: HTMLElement): void;
};
export default vAutoScroll;