/**
* Concatenates each chunk of a string iterator to a buffer and yields the buffer when the input iterator is done
* @param it - The input iterator
*/
export declarefunctionconcatStr(it: AsyncIterableIterator<string>): AsyncIterableIterator<string>;
//# sourceMappingURL=concatStr.d.ts.map