export declare class EnvironmentVariables {
    private readonly env;
    constructor(env?: NodeJS.ProcessEnv);
    isSet(name: string): boolean;
    get(name: string): string | undefined;
    find(name: string): string | undefined;
    findFirst(...names: string[]): string | undefined;
}
//# sourceMappingURL=EnvironmentVariables.d.ts.map