import type { FC } from 'react'; import type { openEventPanelType } from '../../Editor/hooks/useEvent'; import './index.less'; interface CompTreeProps { isExt?: boolean; isDragging?: boolean; isMobile?: boolean; openEventPanel?: openEventPanelType; changeTab?: () => void; setPageViewKey?: () => void; selectCompViewFunc?: (compId: any) => void; tabCurrKey?: any; hoverCheck?: () => void; openWindow?: (data: any) => void; } declare const CompTree: FC; export default CompTree;