import type { BundleManifest, ProfileManifest } from "../../domain/manifests/index.js"; import type { TargetAdapter } from "../../domain/targets/adapter.js"; import type { InstallPlan, InstallSelection } from "../../domain/operations/install-plan.js"; interface CreateInstallPlanOptions { workspaceRoot?: string; } export declare function createInstallPlan(root: string, selection: InstallSelection, bundles: BundleManifest[], profiles: ProfileManifest[], target: TargetAdapter, options?: CreateInstallPlanOptions): InstallPlan; export {}; //# sourceMappingURL=plan-install.d.ts.map