import { AsyncSequence } from "../../sequency"; export declare class OnEachIndexed { /** * Performs the given `action` for each element and returns the sequence and passes the `index` of the current * element (zero-based). * * @param {(index: number, value: T) => Promise | void} action * @returns {AsyncSequence} */ onEachIndexed(this: AsyncSequence, action: (index: number, value: T) => Promise | unknown): AsyncSequence; }