/** * If any values pass predicate before completion return true, else false. * * @param predicate the predicate to apply to the source iterable */ export declare function some(predicate?: (t: T) => boolean): (source: AsyncIterable) => Promise;