import { Sequence } 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) => void} action * @returns {Sequence} */ onEachIndexed(this: Sequence, action: (index: number, value: T) => unknown): Sequence; }