import { SchematicContext, Tree } from '@angular-devkit/schematics'; /** * Adds a CSS entry to the `styles` array of all browser build targets in angular.json. * No-op if the entry already exists or if angular.json is not found. */ export declare function ensureAngularJsonStyle(tree: Tree, style: string, context: SchematicContext): void;