/**
 * Cloudflare-specific Types
 *
 * This module contains types specific to the Cloudflare Workers deployment.
 * Consolidates 5 lines of Cloudflare-specific type definitions.
 */
export interface Env {
    OPENAI_API_KEY: string;
    SERVER_NAME?: string;
    SERVER_VERSION?: string;
    DEBUG?: string;
    ENVIRONMENT?: string;
    NODE_ENV?: string;
    LOG_LEVEL?: string;
    DEPLOYMENT_REGION?: string;
}
//# sourceMappingURL=cloudflare-types.d.ts.map