import { ConfigStore } from './config.store'; import { ConfigValueMetadata } from './interfaces/config-value-metadata.interface'; export declare class ConfigOrchestrator { private readonly store; private readonly configValues; constructor(store: ConfigStore); addConfigValues(target: Function, configValues: ConfigValueMetadata[]): void; mountConfigValues(): Promise; }