/**
 * Concatenates two iterables
 */
export declare function concat<T>(first: AsyncIterable<T>): (second: AsyncIterable<T>) => AsyncGenerator<T, void, unknown>;
