import { Tree } from '@angular-devkit/schematics'; export interface BuildAngularBasePathOptions { project: string; feature?: string | null; shared?: boolean; directory?: string | null; } export declare function BuildAngularBasePath(host: Tree, options: Readonly): string;