declare const SupportedEnvironments: { readonly DEV: "development"; readonly SIT: "staging"; readonly PROD: "production"; }; type SupportedEnvironments = (typeof SupportedEnvironments)[keyof typeof SupportedEnvironments]; export { SupportedEnvironments };