/** * Object to hold the most recent updated env configuration. */ declare const _default: { /** * Private up-to-date env configuration. */ _env: any; /** * Getter to retrieve private up-to-date copy of env configuration * or attempt to require to retrieve the env configruation via file * or return empty object. * * @return {any} The env configuration. */ readonly get: any; /** * Setter to update the private env configuration. * * @param {any} env Updated env configuration. */ set: any; }; export default _default;