/** * Enumerate the kinds of results we can get from a configuration loading source. */ export declare enum ConfigLoaderStatus { FAILED = 0, DID_NOT_PRODUCE = 1, COMPLETED = 2 } export declare enum ConfigSource { CONFIG_STORE = 0, FETCH = 1, NONE = 2 } export declare type ConfigLoadResult = { source: ConfigSource; result: ConfigLoaderStatus; }; export declare type ConfigurationLoadAttempt = Promise; //# sourceMappingURL=config-loader.d.ts.map