import { WorkspaceSchema } from "@schematics/angular/utility/workspace-models"; import { Tree } from "@angular-devkit/schematics"; export declare function getWorkspacePath(host: Tree): string; export declare function getWorkspace(host: Tree): WorkspaceSchema; export declare function getProject(host: Tree, project?: string): WorkspaceProject; export interface WorkspaceProject { root: string; projectType: string; } export declare function isLib(host: Tree, options: { project?: string | undefined; path?: string | undefined; }): boolean;