import { TaskService } from "@webiny/api-core/features/task/TaskService/index.js"; import { TaskDefinition } from "@webiny/api-core/features/task/TaskDefinition/index.js"; export interface IGetTaskUseCase { execute(id: string): Promise | null>; } export declare const GetTaskUseCase: import("@webiny/di").Abstraction; export declare namespace GetTaskUseCase { type Interface = IGetTaskUseCase; type Return = Promise | null>; }