UNPKG

@lumina-study/graph

Version:

Graph library for Lumina Study

15 lines 770 B
export interface TreeNodeHeaderProps { readonly hasSubModules: boolean; readonly isCollapsed: boolean; readonly setIsCollapsed: (collapsed: boolean) => void; readonly onToggleCollapse: (nodeId: string, collapsed: boolean) => void; readonly nodeId: string; readonly label: string; readonly searchTerm?: string; readonly iconPath?: string; readonly canZoom?: boolean; readonly isMobile: boolean; } /** Header section for tree nodes including collapse control */ export declare const TreeNodeHeader: ({ hasSubModules, isCollapsed, setIsCollapsed, onToggleCollapse, nodeId, label, searchTerm, iconPath, canZoom, isMobile, }: TreeNodeHeaderProps) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=TreeNodeHeader.d.ts.map