/// import { Application, ApplicationSettings } from '@e2/core'; export declare class WebCompilerSettings extends ApplicationSettings { TITLE: string; PUBLIC_DIR: string; PUBLIC_URL: string; USE_EXTERNAL_CDN: boolean; RELEASE_DIR: string; TARGET: string; SERVERLESS: any; SERVERLESS_TIMEOUT_IN_SECONDS: number; } export declare class WebCompiler extends Application { private rollupStandalone; protected rollupServerless(): Promise; protected rollupLibrary(): Promise; project(): Promise; build(target?: string): Promise; }