import type { Ref } from 'vue'; export interface UseScrollbarThumbOptions { railTopInset?: number; railBottomInset?: number; minThumbHeight?: number; thumbHeightFactor?: number; onDragStart?: () => void; onDragEnd?: () => void; } export declare function useScrollbarThumb(containerRef: Ref, options?: UseScrollbarThumbOptions): { thumbHeight: Ref; thumbOffset: Ref; isScrollable: import("vue").ComputedRef; isDragging: Ref; update: () => void; onThumbMouseDown: (event: MouseEvent) => void; }; //# sourceMappingURL=scrollbarThumb.d.ts.map