import { Path } from '@angular-devkit/core'; import { Tree } from '@angular-devkit/schematics'; import { WorkspaceProject } from '@schematics/angular/utility/workspace-models'; export declare function getProject(host: Tree, options: { project?: string | undefined; path?: string | undefined; }): WorkspaceProject; export declare function getProjectPath(host: Tree, options: { project?: string | undefined; path?: string | undefined; }): Path; export declare function getAppRootPath(host: Tree, options: { project?: string | undefined; path?: string | undefined; }): Path; export declare function getRootPath(host: Tree, options: { project?: string | undefined; path?: string | undefined; }): Path; export declare function getRoutingModulePath(host: Tree, modulePath: string): Path; export declare function getAppStatePath(host: Tree, options: { project?: string | undefined; path?: string | undefined; }): Path; export declare function isLib(host: Tree, options: { project?: string | undefined; path?: string | undefined; }): boolean;