/** * A description of the Stack's configuration and encryption metadata. */ export interface StackSettings { secretsProvider?: string; encryptedKey?: string; encryptionSalt?: string; config?: { [key: string]: StackSettingsConfigValue; }; } /** * Stack configuration entry */ export declare type StackSettingsConfigValue = string | StackSettingsSecureConfigValue | any; /** * A secret Stack config entry */ export interface StackSettingsSecureConfigValue { secure: string; }