import type { Input } from '@atlaskit/pragmatic-drag-and-drop/types'; import { type ScrollBehavior } from './internal/types'; export declare const createAutoScroller: () => { start: ({ input, behavior }: { input: Input; behavior?: ScrollBehavior; }) => void; updateInput: ({ input }: { input: Input; }) => void; stop: () => void; }; export declare const autoScroller: { start: ({ input, behavior }: { input: Input; behavior?: ScrollBehavior; }) => void; updateInput: ({ input }: { input: Input; }) => void; stop: () => void; };