import React from 'react'; import './index.less'; import { EditorInputBase } from '@lingxiteam/editor-types'; interface TreeColumnsType { onChange?: any; label?: any; propKey?: string; propsKey?: string; allowClear?: boolean; selectedComp?: any; wrapRef?: any; getEditorApi: EditorInputBase['getEditorApi']; } declare const TreeColumns: React.FC; export default TreeColumns;