1interface Process { 2 env: { 3 [key: string]: string | undefined; 4 }; 5} 6 7declare const process: Process; 8