import { workspaces } from '@angular-devkit/core';
/**
 * Resolves options for the build target of the given project
 */
export declare function getProjectTargetOptions(project: workspaces.ProjectDefinition, buildTarget: string): Record<string, import("@angular-devkit/core").JsonValue | undefined>;
/**
 * Gets a style file with the given extension in a project and returns its path. If no
 * extension is specified, any style file with a valid extension will be returned.
 */
export declare function getProjectStyleFile(project: workspaces.ProjectDefinition, extension?: string): string | null;
