/** * Returns the result of concatenating the given iterables. * * @param iterables The iterable list * @return A list consisting of the elements of iterables * * @example * * concat([4, 5, 6], [1, 2, 3]); //=> Iterable<[4, 5, 6, 1, 2, 3]> * concat([], []); //=> Iterable<[]> */ export declare function concat(...iterables: Iterable[]): Iterable; export default concat;