import { Rule } from "@angular-devkit/schematics"; export declare abstract class Generator { abstract get outDir(): string; filesDir: string; src: string; urlComp: string; constructor(filesDir: string); gen(_options: any): Rule; private _gen; } export declare class BackEndGenerator extends Generator { get outDir(): string; } export declare class FrontEndGenerator extends Generator { get outDir(): string; } export declare class E2EGenerator extends FrontEndGenerator { get outDir(): string; urlComp: string; }