/** * Take the first x values from an async iterable */ export declare function take(numberToTake: number): (source: AsyncIterable) => AsyncGenerator;