/** * Lookahead into the async iteratable * * @param source The source iterable to look into * @param howFar How far to look ahead */ export declare function lookahead(howFar: number): (source: AsyncIterable) => Promise<{ values: T[]; iterable: AsyncIterable; }>;