/** * Iterates over elements of collection invoking iteratee for each element. * The iteratee is invoked with three arguments: (value, path). * path is an array containing keys of current value * * @param obj object to iterate over * @param iteratee The function invoked per iteration. */ export declare function forEachDeep(obj: Record, iteratee: (value: any, path: string[]) => void): void;