import type { K8S } from "@k8ts/sample-interfaces"; import { type EnvValue } from "./types"; export declare class EnvBuilder> { private readonly _env; constructor(_env: M); get values(): M; private _envFromSecret; private _envFromConfigMap; [Symbol.iterator](): IterableIterator<[string, EnvValue]>; toEnvVars(): ({ name: string; value: string; valueFrom?: undefined; } | { name: string; valueFrom: K8S.EnvVarSource; value?: undefined; })[]; toObject(): { [x: string]: string; }; get entries(): [string, EnvValue][]; static make(env?: M): EnvBuilder<{}>; } export declare function Env(env?: M): EnvBuilder<{}>; //# sourceMappingURL=env.d.ts.map