import { AbstractGenerator, FileSystem } from "../common";
export declare abstract class AbstractFrontendGenerator extends AbstractGenerator {
    protected doGenerate(fs: FileSystem, frontendModules: Map<string, string>): void;
    protected compileIndexHtml(frontendModules: Map<string, string>): string;
    protected compileIndexHead(frontendModules: Map<string, string>): string;
    protected compileIndexJs(frontendModules: Map<string, string>): string;
}
