import type { AllDragTypes, CleanupFn, MonitorArgs } from '@atlaskit/pragmatic-drag-and-drop/types'; import type { ElementAutoScrollArgs, WindowAutoScrollArgs } from '../internal-types'; export declare function makeApi({ monitor, }: { monitor: (args: MonitorArgs) => CleanupFn; }): { autoScroll: (args: ElementAutoScrollArgs) => CleanupFn; autoScrollWindow: (args?: WindowAutoScrollArgs) => CleanupFn; };