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