import type { Awaitable } from "./Awaitable";
/** For each loop on stream, you can modify the item by x.property = 123 */
export declare function forEachs<T>(fn: (x: T, i: number) => Awaitable<void | any>): TransformStream<T, T>;
