import { IterableX } from '../iterablex.js'; import { MonoTypeOperatorFunction } from '../../interfaces.js'; /** @ignore */ export declare class TakeIterable extends IterableX { private _source; private _count; constructor(source: Iterable, count: number); [Symbol.iterator](): Generator; } /** * Returns a specified number of contiguous elements from the start of an iterable sequence. * * @template TSource The type of the elements in the source sequence. * @param {number} count The number of elements to return. * @returns {MonoTypeOperatorFunction} An iterable sequence that contains the specified * number of elements from the start of the input sequence. */ export declare function take(count: number): MonoTypeOperatorFunction;