export interface UpgradeRunReport { lines: string[]; blocked: boolean; } export declare class UpgradeBlockedError extends Error { readonly lines: string[]; constructor(lines: string[]); } export declare function runUpgrade(projectRoot: string): Promise; export declare function runUpgradeReport(projectRoot: string): Promise;