import { type JsonArray } from '@angular-devkit/core'; import { type Rule, type SchematicContext, type Tree } from '@angular-devkit/schematics'; import { type TuiSchema } from '../ng-add/schema'; export declare function isInvalidAngularJson(tree: Tree): Promise; export declare function addStylesToAngularJson(options: TuiSchema, context: SchematicContext, taigaStyles: string[], filter?: (styles: JsonArray | undefined) => boolean, stylesToReplace?: { from: string; to: string[]; }, tree?: Tree): Rule;