export const CURRENT_ENV: string export const ENV_CONFIG: { development: { API_BASE_URL: string SERVER_API_URL: string WEBSOPY_API_BASE_URL: string APP_NAME: string DEBUG: string } test: { API_BASE_URL: string SERVER_API_URL: string WEBSOPY_API_BASE_URL: string APP_NAME: string DEBUG: string } production: { API_BASE_URL: string SERVER_API_URL: string WEBSOPY_API_BASE_URL: string APP_NAME: string DEBUG: string } } export function getEnvConfig(): (typeof ENV_CONFIG)[keyof typeof ENV_CONFIG] export const API_BASE_URL: string export const SERVER_API_URL: string export const WEBSOPY_API_BASE_URL: string export const APP_NAME: string export const DEBUG: string