import { Rule } from '@angular-devkit/schematics'; declare const ALL_ENTITIES: readonly ["NgxLuzmoDashboardModule", "NgxLuzmoDashboardComponent", "NgxLuzmoVizItemComponent", "NgxLuzmoIQChatComponent", "NgxLuzmoIQAnswerComponent"]; type NgAddEntity = (typeof ALL_ENTITIES)[number]; interface NgAddOptions { project?: string; entity?: NgAddEntity; } export declare function ngAdd(options: NgAddOptions): Rule; export {};