export declare type TForEachFn<T> = (value: T, i: number) => void;
export declare const forEach: <T>(forEachFn: TForEachFn<T>) => (iterable: Iterable<T>) => Iterable<T>;
