import { ITree } from '../../ITree'; export interface UseUpdateTreeProps { tree: ITree; shouldUpdate: () => boolean; update: (tree: ITree) => ITree; } export declare function useUpdateTree({ tree, shouldUpdate, update, }: UseUpdateTreeProps, deps: any[]): ITree; //# sourceMappingURL=useUpdateTree.d.ts.map