/**
 * @module Collection
 */
import { type ICollection } from "../../../../collection/contracts/_module-exports.js";
/**
 * @internal
 */
export declare class SkipIterable<TInput> implements Iterable<TInput> {
    private collection;
    private offset;
    constructor(collection: ICollection<TInput>, offset: number);
    [Symbol.iterator](): Iterator<TInput>;
}
