export declare class Store { private static _data; private static readonly _map; private static readonly watchCallbacks; private static readonly hasDefined; static data: any; static update(path: string, value: any): void; static merge(data: any): void; static get(path: string, defaults?: T): T; static watch(path: string, callback: (value: any) => void): void; private static compileWithEnv; private static updateConfigMap; }