import { Component } from "react"; declare class ReactDragListView extends Component { static defaultProps: { nodeSelector: string; ignoreSelector: string; enableScroll: boolean; scrollSpeed: number; handleSelector: string; lineClassName: string; children: any; }; dragLine: any; cacheDragTarget: any; scrollElement: any; direction: number; scrollTimerId: number; state: any; props: any; static DragColumn: any; constructor(props: any); componentWillUnmount(): void; onTouchStart(e: any): void; onMouseDown(e: any): void; onDragStart(e: any): void; onDragEnter(e: any): void; onDragEnd(e: any): void; getDragNode(target: any): any; dragList(target: any, nodeSelector: any, dragList: any): void; getHandleNode(target: any): any; getDragLine(): any; startDrag(e: any): void; resolveAutoScroll(e: any, target: any): void; stopAutoScroll(): void; autoScroll(): void; hideDragLine(): void; fixDragLine(target: any): void; render(): JSX.Element; } export default ReactDragListView;