import { Selection } from 'd3-selection'; import { D3Node, FlextreeD3Node, OrgChartDataItem, OrgChartOptions } from '../types'; /** * This function basically redraws visible graph, based on nodes state */ export declare const restyleAllForeignObjectElements: (options: OrgChartOptions, svg: Selection) => void; export declare const renderOrUpdateNodes: (options: OrgChartOptions, root: D3Node | undefined, node: D3Node, nodesSelection: Selection, SVGGraphicsElement, string>, onNodeClick: (e: MouseEvent, d: D3Node) => void, onButtonClick: (e: MouseEvent, d: D3Node) => void, onCompactGroupToggleButtonClick: (e: MouseEvent, d: D3Node) => void) => void;