/** * Gets the contents of angular.json as an object */ export declare function getAngularConfig(): any; /** * Returns the config for the defaultProject in angularConfig.json, * or the config for env.ANGULAR_PROJECT if defined */ export declare function getAngularProject(): any; /** * Gets the outputPath prop from angular.json for the given project and type under * /projects//architect//options */ export declare function getOutputPath(type: 'build' | 'server'): any; export declare const getBuildPath: () => any;