import type { PredicateFn } from '../types/functions/mod'; export interface TakeWhile { (predicate: PredicateFn, iter: AsyncIterable): AsyncIterable; (predicate: PredicateFn): (iter: AsyncIterable) => AsyncIterable; } export declare const takeWhile: TakeWhile; //# sourceMappingURL=takeWhile.d.ts.map