import { AsyncSequence } from "../../sequency"; export declare class Take { /** * Returns a new sequence consisting of the first `n` elements. All other elements * are discarded. * * @param {number} n * @returns {AsyncSequence} */ take(this: AsyncSequence, n: number): AsyncSequence; }