import type { LibraryExtractionOptions } from './library-extraction.orchestrator.js'; /** * Result of build config update operations. */ export interface BuildConfigUpdateResult { tsconfigUpdated: boolean; ngPackageUpdated: boolean; pathsAdded: Record; } /** * Updates TypeScript and Angular build configurations after library extraction. */ export declare class BuildConfigUpdater { /** * Update tsconfig.json paths and ng-package.json for the new library. */ update(projectRoot: string, options: LibraryExtractionOptions, libraryPath: string): Promise; private updateTsConfig; private updateNgPackage; } //# sourceMappingURL=build-config-updater.d.ts.map