/**
 * Call `methodName` on each item of the array passing custom arguments if
 * needed.
 */
declare function invoke(arr: any, methodName: any, varArgs: any): any;
export default invoke;
