import { IterableX } from '../iterablex.js'; import { MonoTypeOperatorFunction } from '../../interfaces.js'; /** @ignore */ export declare class SkipLastIterable extends IterableX { private _source; private _count; constructor(source: Iterable, count: number); [Symbol.iterator](): Generator, void, unknown>; } /** * Bypasses a specified number of elements at the end of an iterable sequence. * * @template TSource The type of the elements in the source sequence. * @param {number} count Number of elements to bypass at the end of the source sequence. * @returns {MonoTypeOperatorFunction} An iterable sequence containing the * source sequence elements except for the bypassed ones at the end. */ export declare function skipLast(count: number): MonoTypeOperatorFunction;