export declare function isAbortError(error: unknown): boolean; export declare function createAbortError(reason?: unknown): Error; export declare function throwIfAborted(signal?: AbortSignal): void; export declare function raceWithAbort(work: Promise | (() => Promise), signal?: AbortSignal): Promise;