import React from 'react'; import { NodeItem, NodeType } from '../interface'; interface INodeWrapProps { titleStyle?: React.CSSProperties; type?: NodeType; onContentClick: () => void; title: React.ReactNode; children: React.ReactNode; node: NodeItem; id: string; } declare function NodeWrap({ type, title, onContentClick, node, children, titleStyle, id }: INodeWrapProps): JSX.Element; export default NodeWrap;