import { Tree } from '@angular-devkit/schematics'; export interface BuildNestBasePathOptions { project: string; feature?: string | null; directory?: string | null; shared?: boolean; backend: { project?: string | null; kind?: any; } | undefined; } export declare function BuildNestBasePath(host: Tree, options: BuildNestBasePathOptions): string;