import { DeployApp, BuildAppWorkspaceService, GetApp, GetProject, GetPulumiService, LoggerService, ProjectSdkParamsService, PulumiGetSecretsProviderService, PulumiSelectStackService } from "../../abstractions/index.js"; export declare class DefaultDeployApp implements DeployApp.Interface { private getApp; private buildAppWorkspaceService; private getProject; private pulumiSelectStackService; private getPulumiService; private pulumiGetSecretsProviderService; private logger; private projectSdkParamsService; constructor(getApp: GetApp.Interface, buildAppWorkspaceService: BuildAppWorkspaceService.Interface, getProject: GetProject.Interface, pulumiSelectStackService: PulumiSelectStackService.Interface, getPulumiService: GetPulumiService.Interface, pulumiGetSecretsProviderService: PulumiGetSecretsProviderService.Interface, logger: LoggerService.Interface, projectSdkParamsService: ProjectSdkParamsService.Interface); execute(params: DeployApp.Params): Promise; } export declare const deployApp: import("@webiny/di").Implementation;