declare global { namespace NodeJS { interface ProcessEnv { NODE_ENV: "development" | "production" | "test"; BUILD_TIME: string; } } } export {};