import type { BackgroundTaskSettings } from "../../../admin/shared/types.js"; import { GetBackgroundTaskSettingsUseCase as UseCaseAbstraction, GetBackgroundTaskSettingsGateway } from "./abstractions.js"; declare class GetBackgroundTaskSettingsUseCaseImpl implements UseCaseAbstraction.Interface { private readonly gateway; constructor(gateway: GetBackgroundTaskSettingsGateway.Interface); execute(): Promise; } export declare const GetBackgroundTaskSettingsUseCase: typeof GetBackgroundTaskSettingsUseCaseImpl & { __abstraction: import("@webiny/di").Abstraction; }; export {};