import React from 'react'; import { IMindTreeNode, IMindTreeProps, INodeDirection, INodeKey } from '../../model'; export interface IMindBranchProps extends IMindTreeProps { dataSource: IMindTreeNode; parent?: IMindTreeNode; onToggleClick?: (key: IMindTreeNode, opened: boolean, type: INodeDirection) => void; nodeIndex?: number; type?: INodeDirection; hideHead?: boolean; expandKeys: INodeKey[]; focusKeys: INodeKey[]; direction: 'vertical' | 'horizontal'; nodeRender?: (node: IMindTreeNode) => React.ReactNode | false; onNodeChange?: (node: IMindTreeNode) => void; } export declare const MindBranch: (props: IMindBranchProps) => JSX.Element;