import { AllIterables, AsyncOperator } from '../../AsyncSeq'; /** * Returns a sequence in which the current sequence and the specified sequence are concatenated. * * ```typescript * const result = await fromAsAsync([1, 2]).pipe( * concat([3,4]) * ).toArrayAsync(); * //result: [1,2,3,4] * ``` * * @param target Sequence to be concatenated. * @returns Operator function. * @typeParam T Source element type. * @category Async Operators */ export declare const concatAsync: (target: AllIterables) => AsyncOperator;