export declare class ConfigEnvironmentVariables {
    private static readonly simpleEnvironmentVariableRegexGlobal;
    private static readonly complexEnvironmentVariableRegexGlobal;
    /**
     * Find and replace all known environment variables in a string
     * @param candidate The string to replace environment variables in
     * @returns {string} The string with the environment variables replaced with their values
     */
    private static replaceEnvironmentVariablesInString;
    /**
     * Replace the regex match with a string
     * @param text The text string to perform the operations on
     * @param regex The regex match
     * @param newValue The new string to replace the regex value
     * @returns The modified string
     */
    private static replaceRegexText;
}
//# sourceMappingURL=ConfigEnvironmentVariables.d.ts.map