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