import React from 'react'; import { TreeNode } from '@designable/core'; import './styles.less'; export interface IOutlineTreeNodeProps { node: TreeNode; style?: React.CSSProperties; className?: string; workspaceId?: string; } export declare const OutlineTreeNode: React.FC;