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