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