/** * Inline external templateUrl and styleUrl/styleUrls into the source code * using OXC parser for precise AST-based rewriting. * * Replaces: * templateUrl: './file.html' → template: "...file contents..." * styleUrl: './file.css' → styles: ["...file contents..."] * styleUrls: ['./a.css'] → styles: ["...contents..."] * * When the decorator already has a `styles: [...]` array, inlined CSS is * merged into that existing array instead of emitting a second `styles` * property (which would be a duplicate object literal key). * * Returns the modified source code, or the original if no changes were needed. */ export declare function inlineResourceUrls(code: string, fileName: string): string; /** * Extract inline style strings from Angular @Component decorator using OXC parser. * Returns an array of style string values for preprocessing. */ export declare function extractInlineStyles(code: string, fileName: string): string[];