/**
 * @param promise The promise to watch for resolution or rejection.
 * @returns An `AbortSignal` that aborts when the promise is resolved or rejected
 */
export declare function signalFromPromise(promise: Promise<unknown>): AbortSignal;
