import { type IAppModel } from "../../abstractions/models/IAppModel.js"; export type IDeployParams = Record; export interface IPulumiSelectStackService { execute(app: IAppModel, params?: IDeployParams): Promise; } export declare const PulumiSelectStackService: import("@webiny/di").Abstraction; export declare namespace PulumiSelectStackService { type Interface = IPulumiSelectStackService; type Params = IDeployParams; }