import type { Input, Position } from '@atlaskit/pragmatic-drag-and-drop/types'; import type { ScrollBehavior } from './types'; type Args = { input: Input; dragStartTime: number; shouldUseTimeDampening: boolean; scrollElement: (element: Element, change: Position) => void; scrollWindow: (change: Position) => void; behavior: ScrollBehavior; }; export declare const scroll: ({ input, dragStartTime, shouldUseTimeDampening, scrollElement, scrollWindow, behavior, }: Args) => void; export {};