import { AsyncIterableX } from '../asynciterablex.js'; import { MonoTypeOperatorAsyncFunction } from '../../interfaces.js'; /** @ignore */ export declare class DebounceAsyncIterable extends AsyncIterableX { private _source; private _time; constructor(source: AsyncIterable, time: number); [Symbol.asyncIterator](signal?: AbortSignal): AsyncGenerator, void, unknown>; } /** * Emits a notification from the source async-iterable only after a particular time span * has passed without another source emission. * * @template TSource The type of elements in the source sequence. * @param {number} time The timeout duration in milliseconds * @returns {MonoTypeOperatorAsyncFunction} An operator function which debounces by the given timeout. */ export declare function debounce(time: number): MonoTypeOperatorAsyncFunction;