import { AsyncIterableX } from '../asynciterablex.js'; import { MonoTypeOperatorAsyncFunction } from '../../interfaces.js'; /** @ignore */ export declare class TakeLastAsyncIterable extends AsyncIterableX { private _source; private _count; constructor(source: AsyncIterable, count: number); [Symbol.asyncIterator](signal?: AbortSignal): AsyncGenerator>, void, unknown>; } /** * Returns a specified number of contiguous elements from the end of an async-iterable sequence. * * @template TSource The type of the elements in the source sequence. * @param {number} count Number of elements to take from the end of the source sequence. * @returns {MonoTypeOperatorAsyncFunction} An async-iterable sequence containing the specified * number of elements from the end of the source sequence. */ export declare function takeLast(count: number): MonoTypeOperatorAsyncFunction;