interface Env {
    NODE_ENV: 'development' | 'production' | 'test';
}
declare const env: Env;
export { env };
