/** * Invokes the iteratee `n` times, returning an array of the results of each invocation. * * Differences from lodash: * - has undefined behavior when given a non natural number for `n` * - does not provide a default for `iteratee` * * Contribution to minified bundle size, when it is the only function imported: * - Lodash: 1,497 bytes * - Micro-dash: 51 bytes */ export declare function times(n: number, iteratee: (index: number) => T): T[];