/// import type { TableProps, TableColumnProps } from "antd"; import "./DragSortTable.less"; export declare type DragSortTableProps = TableProps & { columns?: TableColumnProps[]; dataSource?: DateType[]; dragProps?: { nodeSelector?: string; handleSelector?: string; ignoreSelector?: string; enableScroll?: boolean; scrollSpeed?: number; lineClassName?: string; }; mode?: "row" | "column"; onDragEnd?: (list: any[]) => void; }; export declare function DragSortTable>({ columns, dataSource, dragProps, mode, onDragEnd, ...restProps }: DragSortTableProps): JSX.Element;