/**
 * Returns a {@link Promise} that rejects with {@link symbolAbortSignal} when aborted.
 */
export declare function promiseForSignal(signal?: AbortSignal): Promise<never>;
/**
 * Symbol used in throw/catch blocks.
 */
export declare const symbolAbortSignal: unique symbol;
