import { TaskService } from "@webiny/api-core/features/task/TaskService/index.js"; import { TaskDefinition } from "@webiny/api-core/features/task/TaskDefinition/index.js"; import type { IListTasksResponse, IListTaskParams } from "../../../api/types.js"; export interface IListTasksUseCase { execute(params?: ListTasksParams): Promise>; } export type ListTasksParams = IListTaskParams; export declare const ListTasksUseCase: import("@webiny/di").Abstraction; export declare namespace ListTasksUseCase { type Interface = IListTasksUseCase; type Params = ListTasksParams; type Return = Promise>; }