import { MainGraphQLClient } from "@webiny/app/features/mainGraphQLClient/index.js"; import { ListTasksGateway as GatewayAbstraction, type IListTasksInput, type IListTasksOutput } from "./abstractions.js"; declare class ListTasksGraphQLGateway implements GatewayAbstraction.Interface { private client; constructor(client: MainGraphQLClient.Interface); execute(input: IListTasksInput): Promise; } export declare const ListTasksGateway: typeof ListTasksGraphQLGateway & { __abstraction: import("@webiny/di").Abstraction; }; export {};