import { List, Dictionary, ListIterator, ObjectIterator } from 'underscore'; export interface Reverse { (array: List): List; } export interface EachRight { (collection: List, iteratee: ListIterator): List; (collection: Dictionary, iteratee: ObjectIterator): Dictionary; } export declare const reverse: Reverse; export declare const eachRight: EachRight;