import { Rule } from '@angular-devkit/schematics'; import { Schema } from './schema'; /** * ng add schematic that * - adds platform lib to package.json * - adds @fundamental-ngx/core to package.json if not present there already * - installs dependent libraries and runs their external schematics * - adds lib translations and angular.json locale configurations to host app if no translations available * - updates lib translations to host app's translations if available by appending at the end of host app's files * - replaces lib source paths with node_modules source paths for lib-related trans units * @param options options passed for this schematic */ export declare function ngAdd(options: Schema): Rule;