import type { IteratorOrIterable, IterSource } from './types';
/** Concatenates any number of iterator/iterables together, one after another. */
export declare function concat<T extends IteratorOrIterable<any>[]>(...args: T): IterableIterator<IterSource<T[number]>>;
export default concat;
//# sourceMappingURL=concat.d.ts.map