/**
 * Flattens an iterable of iterables
 */
export declare function flatten<T>(source: AsyncIterable<AsyncIterable<T>>): AsyncGenerator<T, void, unknown>;
