import type { Env, EnvActions, EnvFactoryOpts, WithCement } from "@adviser/cement"; interface DenoEnv { get: (key: string) => string | undefined; toObject: () => Record; set: (key: string, value: string) => void; has: (key: string) => boolean; delete: (key: string) => void; } export declare class DenoEnvActions implements EnvActions { #private; static new(opts: WithCement>): EnvActions; get _env(): DenoEnv; readonly opts: WithCement>; private constructor(); register(env: Env): Env; active(): boolean; keys(): string[]; get(key: string): string | undefined; set(key: string, value?: string): void; delete(key: string): void; } export {}; //# sourceMappingURL=deno-env-actions.d.ts.map