export type Env = { name: string; defaultValue?: any; regex?: string; }; export declare class EnvStore { private vars; private values; constructor(values: Record); add(env: Env): void; addAll(envs: Env[]): void; get(name: string): any; } //# sourceMappingURL=env.d.ts.map