import { AbortTaskGateway, AbortTaskUseCase as UseCaseAbstraction, type IAbortTaskInput } from "./abstractions.js"; import type { Task } from "../../../admin/shared/types.js"; declare class AbortTaskUseCaseImpl implements UseCaseAbstraction.Interface { private readonly gateway; constructor(gateway: AbortTaskGateway.Interface); execute(input: IAbortTaskInput): Promise; } export declare const AbortTaskUseCase: typeof AbortTaskUseCaseImpl & { __abstraction: import("@webiny/di").Abstraction; }; export {};