import { type CancelSignal } from './make-cancel-signal'; export declare const succeedOrCancel: ({ happyPath, cancelSignal, cancelMessage, }: { happyPath: Promise; cancelSignal: CancelSignal | undefined; cancelMessage: string; }) => Promise;