/** * Polyfill for Promise.any * Adapted from Sergio Tskhovrebov's implementation: * https://dev.to/sinxwal/looking-for-promise-any-let-s-quickly-implement-a-polyfill-for-it-1kga */ export declare const promiseAny: (iterable: Iterable>) => Promise;