import type { TreeViewItem } from '../types.js'; /** * Moves an item within the tree structure * * Creates a new tree structure with the item moved to maintain immutability, * which is essential for React's rendering model and undo/redo functionality */ export declare function moveItem(items: TreeViewItem[], sourceId: string, targetId: string, position: 'before' | 'after' | 'inside'): TreeViewItem[]; //# sourceMappingURL=moveItem.d.ts.map