/** * Produces an iterator collates the values from the given collection into chunked arrays * * @param {Collection} input * @param {number} [size=2] * * @yields {Array} * @returns {Array} * @category Iterables */ export default function chunkIterable(input: Collection, size?: number): any[];