/**
 * @param {string} env
 */
export function setEnv(env: string): void;
export const DEV: true;
export const PROD: false;
export let ENV: string;
