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