import { Wrappable } from '../../types/iterable'; declare function forEach(callback: (value: T, i: number) => void): (iterable: Wrappable) => void; declare function forEach(callback: (value: T, i: number) => void, iterable: Wrappable): void; export { forEach };