import type { EntryPoint } from '@softarc/native-federation'; /** * Puts the federation entry points into the federation tsconfig's `files`, so the * angular-compiler plugin finds them in the TypeScript program. * * The two keys are owned by different sides: the schematic writes `extends` and `include` * (see schematics/init/steps/generate-federation-tsconfig.ts), this writes `files`. Because * `files` is replaced rather than appended to, an expose that was renamed or removed leaves * nothing behind. * * Only ever call this for a tsconfig the NF target explicitly points at — it is rewritten * as plain JSON, which drops any comments the file had. */ export declare function updateFederationTsConfig(workspaceRoot: string, tsConfigPath: string, entryPoints: EntryPoint[], fallbackEntryPoints?: string[]): void; //# sourceMappingURL=update-federation-tsconfig.d.ts.map