import { Component, Props, ApplicationLog, ApplicationConfigOptions } from './package-protocol'; import { ApplicationPackage } from './application-package'; export declare class ApplicationConfig { protected readonly options: ApplicationConfigOptions; readonly pkg: ApplicationPackage; readonly log: ApplicationLog; readonly error: ApplicationLog; constructor(options: ApplicationConfigOptions, pkg: ApplicationPackage); protected _props: Component | undefined; get props(): Component; protected _rootConfig: Props | undefined; get rootConfig(): Props; getConfig(target: string): Props; protected _frontendConfig: Props | undefined; get frontendConfig(): Props; protected _backendConfig: Props | undefined; get backendConfig(): Props; } //# sourceMappingURL=application-config.d.ts.map