import { Tree } from '@angular-devkit/schematics'; export declare type Options = { name: string; path: string; project: string; type?: string; flat: boolean; }; declare type Entity = 'component' | 'directive' | 'pipe'; export declare function appendModule(options: Options, type: Entity): (tree: Tree) => import("@angular-devkit/schematics/src/tree/interface").Tree; export declare function ruleFactory(options: Options, type: Entity): (tree: Tree) => Promise; export {};