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