import React, { FC } from 'react'; interface INodeEditorProps { data: any; onChange: (data?: any) => void; nodeType: string; id: string; ref?: React.Ref; } declare const NodeEditor: FC; export default NodeEditor;