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