/**
 * Provides the value of the known environment variables.
 */
export interface IEnvironmentVariablesProvider {
    /**
     * 屪
     */
    readonly __i_environment_variables_provider__: true;
    /**
     * Gets the value of the variable that has the specified name.
     */
    get(variableName: string): string;
}
