type Cb = (data: { path: readonly string[]; key: string | undefined; value: any; update: (nextValue: any) => void; }) => void; export declare function simpleTraverse(root: T, cb: Cb): any; export {};