/** * Resolve to `fallback` when `signal` aborts before `promise` settles, leaving * `promise` itself running: callers that share one coalesced upstream request * keep their own cancellation without cancelling each other's answer. */ export declare function settleOrAbort(promise: Promise, signal: AbortSignal | undefined, fallback: T): Promise; //# sourceMappingURL=settle-or-abort.d.ts.map