import React from 'react'; export interface XNodeTreeData { id: string; label: string; icon?: React.ElementType; children?: XNodeTreeData[]; } interface XNodeTreeProps { data: XNodeTreeData[]; initialExpandedIds?: string[]; initialLockedIds?: string[]; } export declare const XNodeTree: React.FC; export {};