/// import { EventEmitter } from 'events'; import { RpsDefaultModel } from './interface'; export declare class RpsContext { readonly _runtimeconfig: string; readonly _config: string; static readonly LOAD_MOD_ERR_EVT: string; configStore: any; private _moduleContext; private _result; $RESULT: any; event: EventEmitter; variables: Object; constructor(); addModuleContext(modName: string, context: any): void; getModuleContext(modName: string): any; getAllContexts(): any[]; getModuleContextStartWith(startingName: string): any[]; getRuntimeDefault(): RpsDefaultModel; saveRuntimeDefault(rpsDefault: RpsDefaultModel): void; updatePriority(moduleName: string, keyword: string, level: number): void; }