import { ProjectDefinition, WorkspaceDefinition } from '@schematics/angular/utility'; /** * Get project from workspace by name or get directly if single project. * @param tree Host tree * @param projectName Project name from schema * @returns Project definition or undefined */ export declare function getActiveProject(workspace: WorkspaceDefinition, projectName?: string): Promise; /** * Get options for the build target of the given project */ export declare function getProjectTargetOptions(project: ProjectDefinition, buildTarget: string): Record; /** * Gets a style file with the given extension in a project and returns its path. If no * extension is specified, it will return null. */ export declare function getProjectStyleFile(project: ProjectDefinition): string | null;