import React from 'react'; import './index.less'; interface Props { viewKey: string; children: React.ReactNode | undefined; } /** View 内容区域的包裹容器,用于处理节点拖拽到该区域后的一些逻辑 */ export declare const ContentVessel: React.MemoExoticComponent<(props: Props) => React.JSX.Element>; export {};