import { AsyncIterableX } from '../asynciterablex.js'; import { MonoTypeOperatorAsyncFunction } from '../../interfaces.js'; /** @ignore */ export declare class ThrottleAsyncIterable extends AsyncIterableX { private _source; private _time; constructor(source: AsyncIterable, time: number); [Symbol.asyncIterator](signal?: AbortSignal): AsyncGenerator, void, unknown>; } /** * Throttles the source async-iterable sequence so that it doesn't emit more than one value during the given timeframe. * * @template TSource The type of elements in the source sequence. * @param {number} time The time in milliseconds to throttle the source sequence. * @returns {MonoTypeOperatorAsyncFunction} The source sequence throttled by the given timeframe. */ export declare function throttle(time: number): MonoTypeOperatorAsyncFunction;