export declare const GLOBAL: { readonly ENV_DEV: "development"; readonly ENV_TEST: "test"; readonly ENV_PROD: "production"; }; export declare const API: { readonly HEALTH_CHECK: "/health-check"; readonly READY_CHECK: "/ready-check"; readonly SWAGGER_UI: "/api-docs"; }; export declare const ENVIRONMENT_MODE_TYPE: { readonly test: "test"; readonly dev: "development"; readonly uat: "uat"; readonly prod: "production"; };