/** * ConfigValue is the input/output of a `pulumi config` command. * It has a plaintext value, and an option boolean indicating secretness. */ export interface ConfigValue { value: string; secret?: boolean; } /** * ConfigMap is a map of string to ConfigValue */ export declare type ConfigMap = { [key: string]: ConfigValue; };