import { MainGraphQLClient } from "@webiny/app/features/mainGraphQLClient/index.js"; import { GetTaskGateway as GatewayAbstraction } from "./abstractions.js"; import type { Task } from "../../../admin/shared/types.js"; declare class GetTaskGraphQLGateway implements GatewayAbstraction.Interface { private client; constructor(client: MainGraphQLClient.Interface); execute(id: string): Promise; } export declare const GetTaskGateway: typeof GetTaskGraphQLGateway & { __abstraction: import("@webiny/di").Abstraction; }; export {};