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