import React from 'react'; import './index.less'; import { EditorInputBase } from '@lingxiteam/editor-types'; interface TreeItemsType { title: string; key: string; $$isParent: boolean; label?: string; value: string; children?: TreeItemsType[]; } interface TreeColumnsContentType { onChange?: any; label?: any; propKey?: string; propsKey?: string; allowClear?: boolean; selectedComp?: any; visible?: boolean; treeType?: boolean; getEditorApi: EditorInputBase['getEditorApi']; value?: TreeItemsType[]; } declare const TreeColumnsContent: React.ForwardRefExoticComponent>; export default TreeColumnsContent;