import { IterableX } from './iterablex'; /** * Concatenates the input sequences. * @param {Iterable>} source Source sequences. * @return {Iterable} Sequence with the elements of the source sequences concatenated. */ export declare function concatAll(source: Iterable>): IterableX;