import { Env, EnvActions, EnvFactoryOpts } from "../sys-env.js"; export declare class BrowserEnvActions implements EnvActions { readonly env: Map; readonly opts: Partial; static new(opts: Partial): EnvActions; private constructor(); get(key: string): string | undefined; set(key: string, value?: string): void; delete(key: string): void; keys(): string[]; active(): boolean; register(env: Env): Env; } //# sourceMappingURL=web-env-actions.d.ts.map