import { SchematicContext, Tree } from '@angular-devkit/schematics'; interface NgAddOptions { project: string; } export declare const ngAdd: (options: NgAddOptions) => (tree: Tree, context: SchematicContext) => Promise; export {};