import React from 'react'; import type { DSLNodeType } from '@lingxiteam/dsl'; import type { FC } from 'react'; import './index.less'; interface DropPlaceholderProps { isExt?: boolean; expandedKeys: string[]; setExpandedKeys: React.Dispatch>; hoverData: React.MutableRefObject | any; dropPosition: React.MutableRefObject; dragData: any; hoverNode: any; } declare const DropPlaceholder: FC; export default DropPlaceholder;