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