import { BrowserBase } from "../Core/BrowserBase"; import { Version } from "../Core/Version"; import { VERSION_TYPE } from "./BrowserPackDto"; export declare class BrowserAsset extends BrowserBase { versionType: VERSION_TYPE; version: Version; outDir: string; ejsData: { version: any; config: any; uuid: string; versionDate: string; datetime: string; buildDate: string; }; private bootscriptFileList; private watchList; private rootDir; private sourceDir; private watch; setEjsData(ejsData: object): void; setWatch(watch: boolean): void; setSourceDir(sourceDir: string): void; setVersionType(versionType: VERSION_TYPE): void; getVersionOutDir(): string; setOutDir(outDir: string): void; isWatch(): boolean; getRelativeFilepath(filepath: string): string; scan(): Promise; outputHTML(file: any, dest: any): Promise; getDistHTMLContent(html: any): any; getBootScriptFileList(): string[]; }