import { Operator } from '../Seq'; /** * Returns the sequence to which the specified value is added. * * ```typescript * const result = from([1, 2]).pipe(concatValue(3)).toArray(); * //result: [1,2,3] * ``` * * @param target Element you want to add to the sequence. * @returns Operator function. * @typeParam T Source element type. * @category Operators */ export declare const concatValue: (target: T) => Operator;