/**
 * A class that lets you manipulate env variables and reset them after a test
 */
export declare class EnvironmentVariableStore {
    private readonly originals;
    private store;
    set(key: string, value: string): void;
    unset(key: string): void;
    restore(): void;
}
//# sourceMappingURL=environment-variable-store.d.ts.map