import { TreeNodeProps } from '../../../ComponentProps/TreeNodeProps'; export declare const addNewRow: (treeData: TreeNodeProps[], newNode: { action?: "addAbove" | "addBelow" | "addInside"; sourceId?: string; payloadSourceId?: string; error?: string; value?: string; label?: string; options?: []; selectedOption?: string; type?: "input" | "inputWithDropdown"; confirmIconTooltip?: string; cancelIconTooltip?: string; }, rootNode: TreeNodeProps) => TreeNodeProps[];