import { type IAppModel } from "../../abstractions/models/index.js"; import { type AppName } from "../../abstractions/types.js"; type IGetAppServiceParams = AppName; type IGetAppServiceResult = IAppModel; interface IGetAppService { execute(appName: IGetAppServiceParams): IGetAppServiceResult; } export declare const GetAppService: import("@webiny/di").Abstraction; export declare namespace GetAppService { type Interface = IGetAppService; type Params = IGetAppServiceParams; type Result = IGetAppServiceResult; } export {};