import { AsyncIterableX } from '../asynciterablex.js'; import { MonoTypeOperatorAsyncFunction } from '../../interfaces.js'; /** @ignore */ export declare class DelayEachAsyncIterable extends AsyncIterableX { private _source; private _dueTime; constructor(source: AsyncIterable, dueTime: number); [Symbol.asyncIterator](signal?: AbortSignal): AsyncGenerator, void, unknown>; } /** * Delays the emitting of each items in the async-iterable by the given due time. * * @template TSource The type of elements in the source sequence. * @param {number} dueTime The delay duration in milliseconds * @returns {MonoTypeOperatorAsyncFunction} An operator which takes an async-iterable and delays each item in the sequence by the given time. */ export declare function delayEach(dueTime: number): MonoTypeOperatorAsyncFunction;