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