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