/** * Wrap a promise with a timeout. If the promise does not settle within the given time, * the function resolves with the provided fallback value. * * Note: This does not cancel the underlying operation; it only ignores its eventual result. * If cancellation is required, the callee must support AbortSignal or similar. */ export declare function withTimeout(promise: Promise, timeoutMs: number, fallback: T): Promise; //# sourceMappingURL=promiseWithTimeout.d.ts.map