import { BuildAppWorkspaceService, GetApp, GetAppOutput, GetPulumiService, PulumiSelectStackService } from "../../abstractions/index.js"; export declare class DefaultGetAppOutput implements GetAppOutput.Interface { private getApp; private buildAppWorkspaceService; private pulumiSelectStackService; private getPulumiService; constructor(getApp: GetApp.Interface, buildAppWorkspaceService: BuildAppWorkspaceService.Interface, pulumiSelectStackService: PulumiSelectStackService.Interface, getPulumiService: GetPulumiService.Interface); execute(params: GetAppOutput.Params): Promise<{ pulumiProcess: import("execa").ExecaChildProcess; }>; } export declare const getAppOutput: import("@webiny/di").Implementation;