/**
 * Return maximum value inside array
 */
declare function max(arr: any, iterator?: any, thisObj?: any): any;
export default max;
