import React from 'react'; import { LingXiEdFC } from '@lingxiteam/types'; export interface MyTreeEDProps { name?: string; nodeIcons: any[]; treeData: any[]; disabled?: boolean; showLineIcon?: boolean; showLine?: boolean; treeNodeIcon?: any; showSearch?: boolean; customRenderCode?: any; className?: string; style?: React.CSSProperties; $$componentItem: { id: string; }; backgroundType?: any; ['data-canvas-drag-id']?: string; ['data-isLabelDropBoxChild']?: any; id?: string; } declare const TreeED: LingXiEdFC; export default TreeED;