import { BaseConfigValue, ConfigValue } from '../types'; /** * Recursively traverses an object, looking for keys with Promised values and returns a Promise of * the object with all nested Promises resolved. */ export declare function valuesForPromises(promises: Array>): Promise>; export declare function resolveConfigPromises(configValue: ConfigValue): Promise;