/**
 * @module Collection
 */
import { type IAsyncCollection } from "../../../../collection/contracts/_module.js";
/**
 * @internal
 */
export declare class AsyncTakeIterable<TInput> implements AsyncIterable<TInput> {
    private collection;
    private limit;
    constructor(collection: IAsyncCollection<TInput>, limit: number);
    [Symbol.asyncIterator](): AsyncIterator<TInput>;
}
