/**
 * @module Collection
 */
import { type AsyncIterableValue } from "../../../../utilities/_module.js";
/**
 * @internal
 */
export declare class AsyncMergeIterable<TInput> implements AsyncIterable<TInput> {
    private readonly iterables;
    constructor(iterables: AsyncIterableValue<AsyncIterableValue<TInput>>);
    [Symbol.asyncIterator](): AsyncIterator<TInput>;
}
