import type { DragAndDropPlugin } from './types.ts'; export declare const DragAndDropBuiltinPlugins: { /** * Returns plugin that cleans selection during drag-and-drop. * @returns Plugin. */ cleanSelection(): DragAndDropPlugin; /** * Returns plugin that prevents click if target element was moved by drag-and-drop. * @returns Plugin. */ preventClick(): DragAndDropPlugin; /** * Returns plugin that prevents page scroll and "pull-to-refresh" on draggable element. * @returns Plugin. */ touchScroll(): DragAndDropPlugin; };