import React from 'react'; import { ComponentsTreeProps } from './components-tree'; export interface OutlineViewProps extends ComponentsTreeProps { /** * 展示状态视图 */ showStateView?: boolean; } export declare function OutlinePanel({ showStateView, ...treeProps }: OutlineViewProps): React.JSX.Element;