import { Sequence } 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 {Sequence} */ plus(this: Sequence, element: T): Sequence; /** * Appends the given array to the end of the sequence and returns a new sequence. * * @param {T[]} other * @returns {Sequence} */ plus(this: Sequence, other: T[]): Sequence; /** * Appends the given sequence to the end of the sequence and returns a new sequence. * * @param {Sequence} other * @returns {Sequence} */ plus(this: Sequence, other: Sequence): Sequence; }