import { ArrayIteratee, ObjectIteratee } from '../interfaces'; /** * This method is like `forEach` except that it iterates over elements of `collection` from right to left. * * Contribution to minified bundle size, when it is the only function imported: * - Lodash: 3,777 bytes * - Micro-dash: 217 bytes */ export declare function forEachRight(array: T[] | undefined, iteratee: ArrayIteratee): T[]; export declare function forEachRight(object: T | undefined, iteratee: ObjectIteratee): T; /** @hidden */ export declare function forEachRightOfArray(array: T[], iteratee: ArrayIteratee): void;