/**
 * Iterates over a callback a set amount of times
 */
declare function times(n: any, callback: any, thisObj?: any): void;
export default times;
