export type SettledResult = { status: 'fulfilled'; value: T; } | { status: 'rejected'; reason: unknown; }; export declare function getSettledValue(result: SettledResult): T; /** Promise.allSettled polyfill for es2017 lib target */ export declare function allSettled(promises: Iterable>): Promise>>>;