import type { InstallPlan } from "../../domain/operations/install-plan.js"; import type { BehaviorEventEmitter } from "../behavior/behavior-event-emitter.js"; export interface ApplyInstallResult { messages: string[]; guidancePath: string; briefPath?: string; firstRunResultPath?: string; } export declare function applyInstall(root: string, plan: InstallPlan, packageRoot?: string, emitter?: BehaviorEventEmitter): Promise; //# sourceMappingURL=apply-install.d.ts.map