import { App, View, Frontend } from '../concepts'; import type { LibInfo } from '../concepts'; import { RawOptions } from '.'; import type { BundleFileGeneratorConfig as Config } from './release-body/types'; export declare let entityList: string[]; export declare let officalEntityList37: string[]; export declare function checkOfficalPermissTemplate(app: any): boolean; export interface Route { path?: string; component?: RawOptions; children?: Array; redirect?: string; meta?: { [key: string]: any; }; fullPath?: string; libs?: LibInfo[]; } export declare function stringifyMetaData(obj: any): string; export declare function genBundleFiles(app: App, frontend: Frontend, config: Config): Promise; export declare function genFrontendBundleFiles(app: App, frontends: Array, config: Config): Promise; export declare function getOneFiles(options: { app: App; frontend: Frontend; view: View; action: 'current' | 'all'; cacheRouters: string; config: Config; }): Promise; //# sourceMappingURL=genBundleFiles.d.ts.map