import React, { ReactNode } from 'react';
import LmDrag from './LmDrag';
import { PointerActivationConstraint } from '@dnd-kit/core';
export default LmDrag;
export { LmDrag };
export interface LmDragProps {
    options?: Array<any>;
    rowKey: string;
    move?: (activeId: string, overId: string, fileList: Array<any>) => void;
    children?: ReactNode | React.FC | null;
    /** 指针激活约束 */
    activationConstraint?: PointerActivationConstraint;
}
