import { IterableX } from '../iterablex.js'; import { MonoTypeOperatorFunction } from '../../interfaces.js'; /** @ignore */ export declare class SkipIterable extends IterableX { private _source; private _count; constructor(source: Iterable, count: number); [Symbol.iterator](): Generator; } /** * Bypasses a specified number of elements in an iterable sequence and then returns the remaining elements. * * @template TSource The type of the elements in the source sequence. * @param {number} count The number of elements to skip before returning the remaining elements. * @returns {MonoTypeOperatorFunction} An iterable sequence that contains the elements that * occur after the specified index in the input sequence. */ export declare function skip(count: number): MonoTypeOperatorFunction;