import { type ComparisonWindow } from "../runtime/compute-effectiveness-comparison.js"; export interface UpdateWorkspaceResult { workspaceRoot: string; currentPackageVersion: string; latestPackageVersion: string; packageRootUsed: string; updatedTargets: string[]; updatedBundles: string[]; preservedStateRoots: string[]; backupPath?: string; dryRun: boolean; messages: string[]; comparisonWindow?: ComparisonWindow; } interface UpdateWorkspaceOptions { workspaceRoot: string; packageTag?: string; dryRun?: boolean; packageRootOverride?: string; } export declare function updateWorkspace(options: UpdateWorkspaceOptions): Promise; export {}; //# sourceMappingURL=update-workspace.d.ts.map