/** * Take while a predicate holds true */ export declare function takeWhile(predicate: (t: T) => boolean): (source: AsyncIterable) => AsyncGenerator;