import type { UseScrollOptions, UseScrollReturn } from '.'; type BindingValueFunction = (state: UseScrollReturn) => void; type BindingValueArray = [BindingValueFunction, UseScrollOptions]; export declare const dScroll: (el: HTMLElement, binding: BindingValueFunction | BindingValueArray) => void; export {};