/** * Invokes the iteratee `count` times, returning an array of the results of * each `iteratee(index)` and the index start with `0`. * * @param count number of iteratee * @param iteratee function of each iteratee */ export declare const forCount: (count: number, iteratee: (index: number) => T) => T[]; //# sourceMappingURL=for-count.d.ts.map