/**
 * Iterates over a callback a set amount of times
 * returning the results
 */
declare function take(n: any, callback: any, thisObj?: any): any[];
export default take;
