export declare class ConfigStore { private _data; private readonly _map; private readonly watchRefs; private readonly defined; get data(): any; set data(data: any); update(path: string, value: any): void; merge(data: any): void; get(path: string, defaults?: T): T; watch(path: string, ref: (value: any) => void): void; private compileWithEnv; private updateConfigMap; }