import type { DSLNodeType } from '@lingxiteam/dsl'; import React from 'react'; export interface ObjDragBoxProps { className?: string; _component?: DSLNodeType; expandedKeys: string[]; setExpandedKeys: React.Dispatch>; hoverData: React.MutableRefObject; dropPosition: React.MutableRefObject; dragData: any; isExt?: boolean; [key: string]: any; setPageViewKey: () => void; } declare const ObjDragBox: React.FC; export default ObjDragBox;