import type { State, DraggingState } from '../../types';

export interface AutoScroller {
  start: (state: DraggingState) => void;
  stop: () => void;
  scroll: (state: State) => void;
}
