// 环境变量类型定义
interface ImportMetaEnv {
  // 基础配置
  readonly FAST_ENABLE_ANALYTICS: string
  readonly FAST_APP_TITLE: string

  // API 配置
  readonly FAST_API_BASE_URL: string
  readonly FAST_API_TIMEOUT: string
  readonly FAST_API_PREFIX: string

  // 功能开关
  readonly FAST_ENABLE_DEVTOOLS: string

  // 第三方服务
  readonly FAST_SENTRY_DSN: string

  // 构建配置
  readonly FAST_BUILD_COMPRESS: string
  readonly FAST_BUILD_ANALYZE: string
  readonly FAST_DROP_CONSOLE: string
  readonly FAST_DROP_DEBUGGER: string

  // 客户端类型
  readonly FAST_CLIENT: string

  // 商龙云服务
  readonly FAST_SLY_SERVER_BASE: string

  // 总部前端地址
  readonly FAST_CY7_CENTER_FRONT: string

  // 快餐专版
  readonly FAST_WIN_SERVER_BASE: string
  readonly FAST_WIN_SITE_ROOT: string
  readonly FAST_WIN_DIST_DIR: string

  // KDS 相关
  readonly FAST_KDS_SERVER_BASE: string
  readonly FAST_KDS_SITE_ROOT: string
  readonly FAST_KDS_DIST_DIR: string

  // 快餐云端(融合)
  readonly FAST_CLOUD_SERVER_BASE: string
  readonly FAST_CLOUD_SERVER_SYSTEM: string
  readonly FAST_CLOUD_FRONT: string

  // 管理平台
  readonly FAST_ADMIN_SITE_ROOT: string
  readonly FAST_ADMIN_DIST_DIR: string

  // 吧台管理
  readonly FAST_BARCOUNTER_SITE_ROOT: string
  readonly FAST_BARCOUNTER_DIST_DIR: string

  // 会员网关
  readonly FAST_MEMBER_SITE_ROOT: string
  readonly FAST_MEMBER_DIST_DIR: string

  // 打印
  readonly FAST_PRINT_SITE_ROOT: string
  readonly FAST_PRINT_DIST_DIR: string

  // SPRO
  readonly FAST_SPRO_SITE_ROOT: string
  readonly FAST_SPRO_DIST_DIR: string

  // CRM SDK
  readonly FAST_CRM_SDK_ROOT: string
  readonly FAST_CRM_SDK_SITE: string
  readonly FAST_CRM_SDK_VERSION: string
}

interface ImportMeta {
  readonly env: ImportMetaEnv
}
