import { MutableRefObject } from 'react'; export interface UseDragAutoScrollOptions { scrollContainerRef: MutableRefObject; edgeThreshold?: number; isEnabled?: boolean; minScrollAmount?: number; scrollCurveExponent?: number; scrollSpeed?: number; } export declare const useDragAutoScroll: ({ scrollContainerRef, isEnabled, edgeThreshold, scrollSpeed, minScrollAmount, scrollCurveExponent, }: UseDragAutoScrollOptions) => void;