import { Rule } from '@angular-devkit/schematics'; export interface CoerceNestServiceProjectOptions { project: string; feature?: string | null; shared?: boolean; backend: { project?: string | null; kind?: any; } | undefined; } /** * @deprecated removed use the AssertNestProject function Rule */ export declare function CoerceNestServiceProject(options: CoerceNestServiceProjectOptions): Rule;