/** * 1) enableIvy:false → remove it (ViewEngine is gone) */ export declare function applyEnableIvyFix(rootDir: string): Promise; /** * 2) HttpModule → HttpClientModule in NgModules */ export declare function applyHttpModuleFix(rootDir: string): Promise; /** * 3) Remove entryComponents from NgModule metadata */ export declare function applyEntryComponentsFix(rootDir: string): Promise; /** * 4) Remove IE11 from browserslist configs */ export declare function applyBrowserslistIEFix(rootDir: string): Promise; /** * 5) tsconfig target "es5" → "es2015" */ export declare function applyTsTargetModernize(rootDir: string): Promise; /** * 6) CommonJS require() usage — for now, just log. * Real auto-fix is complex (convert require → import). */ export declare function applyCommonJsReviewNote(_rootDir: string): Promise; /** * 7) AnimationModule.forRoot → provideAnimations() */ export declare function applyAnimationModuleFix(rootDir: string): Promise; /** * 8) Remove rxjs-compat */ export declare function applyRxjsCompatRemovalFix(rootDir: string): Promise; /** * 9) ModuleWithProviders → ModuleWithProviders */ export declare function applyModuleWithProvidersGenericFix(rootDir: string): Promise; export declare function applyTypescript56Upgrade(rootDir: string): Promise; export declare function applyProtractorBuilderReview(rootDir: string): Promise;