import { AsyncSequence } from "../../sequency"; export declare class Plus { /** * Appends the given `element` to the end of the sequence and returns a new sequence. * * @param {T} element * @returns {AsyncSequence} */ plus(this: AsyncSequence, element: T): AsyncSequence; /** * Appends the given array to the end of the sequence and returns a new sequence. * * @param {T[]} other * @returns {AsyncSequence} */ plus(this: AsyncSequence, other: T[]): AsyncSequence; /** * Appends the given sequence to the end of the sequence and returns a new sequence. * * @param {AsyncSequence} other * @returns {AsyncSequence} */ plus(this: AsyncSequence, other: AsyncSequence): AsyncSequence; }