import { Architect } from '@angular-devkit/architect'; import { TestingArchitectHost } from '@angular-devkit/architect/testing'; import { Rule, Tree } from '@angular-devkit/schematics'; import { MockBuilderContext } from '@nrwl/workspace/testing'; export declare function runSchematic(schematicName: string, options: any, tree: Tree): Promise; export declare function callRule(rule: Rule, tree: Tree): Promise; export declare function createApp(tree: Tree, appName: string): Promise; export declare function getTestArchitect(): Promise<[Architect, TestingArchitectHost]>; export declare function getMockContext(): Promise;