/** How to serve client-side assets at runtime */ export declare enum AssetServingMode { /** Serve assets via the webpack dev server (`dev` runs this, or `pnpm dev:web` if `dev-background`) */ DevServer = 0, /** Have the API serve a static build */ ServeStatic = 1, /** Have a CDN serve a static build (or local API pod, if in development) */ AssetCDN = 2 } /** Optional resource detectors for adding telemetry span attributes at runtime */ export declare enum TelemetryResourceDetector { Process = 0, Environment = 1, GCP = 2, AWS = 3 }