import { B2Client } from "./client"; export interface EnvValues { [key: string]: string; } export declare class B2Env { readonly isRef: boolean; private c; private path; constructor(client: B2Client, entryPath: string, isRef?: boolean); get(): Promise; set(values: EnvValues): Promise; }