export interface UpgradeDiffLike { path: string; status: 'new' | 'modified' | 'same'; } export declare function selectSafeUpgradeDiffs(diffs: T[], force: boolean): { applicable: T[]; conflicts: T[]; }; export declare function mergeWorkflowScripts(projectScripts: Record, templateScripts: Record, force: boolean): { scripts: Record; conflicts: string[]; changed: boolean; }; //# sourceMappingURL=upgrade-selection.d.ts.map