type EnvDict = { [key: string]: string | EnvDict; }; /** * Converts process.env variables into a object * @example process.env["some_subproperty"] = "hello" * returns { some: { subProperty: "hello" } } */ export declare const getEnv: () => EnvDict; export {}; //# sourceMappingURL=getEnv.d.ts.map