///
import { ConfigurationProperties } from '@zetapush/core';
export declare class EnvironmentVariablesConfigurationProperties implements ConfigurationProperties {
private env;
constructor(env?: NodeJS.ProcessEnv);
has(key: string): boolean;
get(key: string): T | null;
get(key: string, defaultValue: T): T;
getOrThrow(key: string, error?: E): T;
private convertValue;
private convertKey;
}