/** * Take the first value or the first value to pass predicate from an async iterable */ export declare function first(predicate?: (t: T) => boolean): (source: AsyncIterable) => AsyncGenerator;