import { AbortablePromise } from 'better-promises'; /** * Cancels the promise stored in the signal. * @param signal - signal with promise. */ export declare function signalCancel(signal: () => (AbortablePromise | undefined)): void;