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