/// import type { OperationType, TreeData } from './typings'; interface Props { node: TreeData; prefixCls: string; operation?: OperationType; highlightKeywords?: string; } export default function TreeNodeTitle(props: Props): JSX.Element; export {};