import type { IResponseAbortedResult } from "./abstractions/index.js"; import { TaskResultStatus } from "@webiny/api-core/features/task/TaskDefinition/index.js"; export declare class ResponseAbortedResult implements IResponseAbortedResult { readonly webinyTaskId: string; readonly webinyTaskDefinitionId: string; readonly tenant: string; readonly status: TaskResultStatus.ABORTED; constructor(params: Omit); }