importSequencefrom"./Sequence";
exportdeclareclassTake {
/**
* Returns a new sequence consisting of the first `n` elements. All other elements
* are discarded.
*
* @param {number} n
* @returns {Sequence<T>}
*/
take<T>(this: Sequence<T>, n: number): Sequence<T>;
}