import { Iterable } from './interfaces'; declare function innerLooper(collection: Iterable, callbackFn: (currentValue: any, keyOrIndex: string | number, collection: Iterable) => any, thisArg?: any): void; export default innerLooper;