import type { TableProps } from './types';
export declare const useTableDrag: (store: TableProps["store"]) => {
handleDragStart: (e: React.DragEvent) => void;
handleDragOver: (e: any) => void;
handleDrop: () => Promise<void>;
handleDragEnd: () => void;
};