import * as local from "./envs/local"; import * as staging from "./envs/staging"; import * as sandbox from "./envs/sandbox"; import * as production from "./envs/production"; export declare enum Environment { local = "local", test = "test", development = "development", staging = "staging", sandbox = "sandbox", production = "production" } declare const env: { test: typeof local; local: typeof local; development: typeof local; staging: typeof staging; sandbox: typeof sandbox; production: typeof production; }; export default env;