import { Tree } from '@angular-devkit/schematics'; import { UnitTestTree } from '@angular-devkit/schematics/testing'; import { FrameworkTypes } from '@nstudio/xplat-utils'; export declare function getFileContent(tree: UnitTestTree, filePath: string): string; export declare function createEmptyWorkspace(tree: Tree, framework?: FrameworkTypes): Tree; export declare function createXplatWithAppsForElectron(tree: Tree): Tree; export declare function createXplatWithApps(tree: Tree, framework?: FrameworkTypes): Tree; export declare function createXplatWithNativeScriptWeb(tree: Tree, withRouting?: boolean, framework?: FrameworkTypes, withNxLibName?: string): Tree; export declare function createNxLib(tree: Tree, name: string): void; export declare function createXplatLibs(tree: Tree): void; export declare function createXplatNativeScriptAngular(tree: Tree, framework?: FrameworkTypes): void; export declare function createXplatWebAngular(tree: Tree, framework?: FrameworkTypes): void; export declare function createWebAngularApp(tree: Tree, withRouting?: boolean): void; export declare function createNativeScriptAngularApp(tree: Tree, withRouting?: boolean): void; export declare const isInModuleMetadata: (moduleName: string, property: string, value: string, inArray: boolean) => RegExp; export declare const isInComponentMetadata: (componentName: string, property: string, value: string, inArray: boolean) => RegExp; export declare const isInDecoratorMetadata: (moduleName: string, property: string, value: string, decoratorName: string, inArray: boolean) => RegExp;