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