import { NonPausableTransferTask } from '../../../types/common'; export declare function createAbortableTask(executor: (abortController: AbortController) => Promise): NonPausableTransferTask & { then: Promise['then']; catch: Promise['catch']; finally: Promise['finally']; };