import { ContextValues, CommonConfig, GlobalConfig, InheritableCfg } from './types.js'; export declare class CommonCfg implements InheritableCfg { #private; name: string; parent?: InheritableCfg; constructor(name: string, cfg?: CommonConfig, parent?: InheritableCfg); getConfig(mergeParents?: boolean): GlobalConfig; setConfig(newConfig: CommonConfig, replace?: boolean): void; getLogLevel(): string | undefined; setLogLevel(levelName: string | undefined): void; setContext(newContext: ContextValues): void; addContext(newContext: ContextValues): void; getChild(name: any, cfg?: CommonConfig): CommonCfg; getDebugVar(): string | undefined; } //# sourceMappingURL=CommonCfg.d.ts.map