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