import { Rule } from '@angular-devkit/schematics'; export declare enum ComponentType { LIST = 0, EDITION_PAGE = 1, EDITION_DIALOG = 2 } export declare function gen({ componentName, componentType, url }: { componentName: string; componentType: ComponentType; url: string; }): Rule;