import type { FC } from 'react'; import './CustomDragLayer.less'; interface CustomDragLayerProps { } /** * 拖拽自定义展示层 * 需要配合 useDragComp 入参 custom: true * @param props props * @returns */ declare const CustomDragLayer: FC; export default CustomDragLayer;