import { type AppName } from "../../abstractions/types.js"; import { type ExecaChildProcess } from "execa"; type IPulumiProcess = ExecaChildProcess; interface IDestroyAppParams { app: AppName; } interface IDestroyApp { execute(params: IDestroyAppParams): Promise<{ pulumiProcess: IPulumiProcess; }>; } export declare const DestroyApp: import("@webiny/di").Abstraction; export declare namespace DestroyApp { type Interface = IDestroyApp; type Params = IDestroyAppParams; type PulumiProcess = IPulumiProcess; } export {};