type NodeEnv = "development" | "production" | "test";
type LogLevel = "debug" | "info" | "warn" | "error";
export declare const env: {
    readonly NODE_ENV: NodeEnv;
    readonly PORT: number;
    readonly LOG_LEVEL: LogLevel;
    readonly API_PREFIX: string;
    readonly DATABASE_URL: string;
    readonly DASHBOARD_ORIGIN: string | undefined;
    readonly ADMIN_ORIGIN: string | undefined;
    readonly OPENAI_API_KEY: string;
    readonly OPENAI_MODEL: string;
    readonly OPENAI_EMBEDDING_MODEL: string;
    readonly isDevelopment: boolean;
    readonly isProduction: boolean;
    readonly isTest: boolean;
};
export type Env = typeof env;
export {};
