import React from 'react'; import './nodetype.less'; export interface LabeledValue { key?: string; value: string; label: React.ReactNode; } export interface IProps { onChangeDataType?: ((value: string, option: object) => void) | undefined; optionlist?: Array; optionvalue?: string; placeholder?: string | React.ReactNode; onChange?: (option: object) => void; dataJson?: any; disabled?: boolean; } declare const NodeType: React.FC; export default NodeType;